// Renders title with fancy three-colour surround
function renderHeader (title)
{
	document.writeln ("<center>");
	document.writeln ("<TABLE WIDTH=400 CELLPADDING=2 CELLSPACING=0 BORDER=0 BGCOLOR=#006666>");
	document.writeln ("<TR>");
	document.writeln ("<TD>");
	document.writeln ("<TABLE WIDTH=396 CELLPADDING=2 CELLSPACING=0 BORDER=0 BGCOLOR='YELLOW'>");
	document.writeln ("<TR>");
	document.writeln ("<TD>");
	document.writeln ("<TABLE WIDTH=392 CELLPADDING=2 CELLSPACING=0 BORDER=0 BGCOLOR=#006666>");
	document.writeln ("<TR>");
	document.writeln ("<TD>");
	document.writeln ("<TABLE WIDTH=388 CELLPADDING=5 CELLSPACING=0 BORDER=0 BGCOLOR='WHITE'>");
	document.writeln ("<TR>");
	document.writeln ("<TD VALIGN=MIDDLE ALIGN=CENTER>");
	document.writeln ("<H2>" + title + "</H2>");
	document.writeln ("</TD>");
	document.writeln ("</TR>");
	document.writeln ("</TABLE>");
	document.writeln ("</TD>");
	document.writeln ("</TR>");
	document.writeln ("</TABLE>");
	document.writeln ("</TD>");
	document.writeln ("</TR>");
	document.writeln ("</TABLE>");
	document.writeln ("</TD>");
	document.writeln ("</TR>");
	document.writeln ("</TABLE>");
	document.writeln ("</center>");
}
