
function printHeader(name) {

	if (name == undefined) {
	
	namenumber = Math.floor(Math.random() * 2);
//	alert("namenumber " + namenumber);

	namelist = new Array(2)
	namelist[0] = "empty"
	namelist[1] = "empty"
//	namelist[2] = "ralph"
//	namelist[3] = "egbert"
	
	name = namelist[namenumber];
//	alert("De naam is " + name);

	} 
	
	document.write("<TABLE BORDER=0 WIDTH=800 CELLPADDING=0 CELLSPACING=0 CLASS=white>");
	document.write("<TR><TD VALIGN=top>");
	document.write("<TABLE BORDER=0 WIDTH=800 CELLPADDING=0 CELLSPACING=0>");
	document.write("<TR><TD VALIGN=top ALIGN=right>");
	document.write("<A  HREF=../index.html><IMG SRC='../images/astragy_dikw_small.jpg' width=261 HEIGHT=59 BORDER=0 ALT=Homepage /> </A>");
	document.write("</TD></TR>");
	document.write("</TABLE>");
	document.write("<TABLE BORDER='0' WIDTH='100%' CELLPADDING='0' CELLSPACING='0' CLASS='redback'>");
	document.write("<TR><TD><IMG SRC='../images/main_" + name + ".jpg' WIDTH=200 HEIGHT=120 BORDER=0 STYLE='left:0px;'>");
	document.write("</TD><TD WIDTH='680'>");
	document.write("<IMG SRC='../images/quote_" + name + ".gif' WIDTH=280 HEIGHT=120 BORDER=0 HSPACE=20>");
	document.write("</TD></TR>");
	document.write("</TABLE>");
	document.write("</TD></TR>");
	document.write("<TR><TD VALIGN=top CLASS=dotted> ");
	document.write("<SCRIPT LANGUAGE=JavaScript SRC='/scripts/coolmenus_pages_en.js'></SCRIPT> ");
	document.write("</TD></TR>");
	document.write("<TR><TD VALIGN=top>");
	document.write("<TABLE BORDER=0 WIDTH=90%><TR><TD VALIGN=top>");
	}
