

function writeHeader()
{
	var str;
	
	/***	Header with logo for all pages	***/
	
	str = "<TABLE WIDTH=750 BORDER=0 CELLPADDING=0 CELLSPACING=1 BGCOLOR=#000080>\n";
	str += "<TR>\n";
	str += "	<TD ALIGN=Center>\n";
	str += "	<A HREF=\"/\"><IMG SRC=/images/newlogo/newlogo3.jpg BORDER=0 ALT=\"Gabelli Home\"></A>\n";
	str += "	<TABLE WIDTH=100% CELLSPACING=0 CELLPADDING=0>\n";
	str += "	<TR>\n";
	str += "		<TD ALIGN=center HEIGHT=21>\n";
	str += "		<TABLE WIDTH=100% BORDER=0 CELLSPACING=0 CELLPADDING=0 BGCOLOR=#000080>\n";
	str += "		<TR>\n";
	str += "			<TD BGCOLOR=#000080><FONT COLOR=White> &nbsp; &nbsp; &nbsp; \n";
	str += "			<SCRIPT LANGUAGE=JavaScript>\n";
	str += "			document.write(customDate(new Date ()))\;\n";
	str += "			</SCRIPT>\n";
	str += "			</FONT></TD>\n";
	str += "			<TD ALIGN=right BGCOLOR=#000080><FONT COLOR=White><B>\n";
	str += "			| &nbsp; \n";
	str += "			<A HREF=/sitemap.html STYLE=\"color: White; text-decoration: none;\">Sitemap</A>\n";
	str += "			&nbsp; | &nbsp; \n";
	str += "			<A HREF=/portfolio.html STYLE=\"color: White; text-decoration: none;\">Account Access</A>\n";
	str += "			&nbsp; | &nbsp; \n";
	str += "			<A HREF=/corporate/contacts.html STYLE=\"color: White; text-decoration: none;\">Contact Us</A>\n";
	str += "			&nbsp; \n";
	str += "			</B></FONT></TD>\n";
	str += "		</TR></TABLE>\n";
	str += "		</TD>\n";
	str += "	</TR></TABLE>\n";
	str += "	</TD>\n";
	str += "</TR>\n";
	str += "</TABLE>\n";
	//str += "<BR>\n";

	return str;
}
