function header(title, image)
{
document.write("<meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\">");
    if(title != "")
    {
	document.write("<title>" + title + "</title>");
	}
	document.write("<img src=\"/675x5White.jpg\"><br>");
	if (image=="default") 
	{
		document.write("<img src=\"/header.jpg\"><br>");
	} else {
		document.write("<img src=\"" + image +"\"><br>");
	}
	document.write("<img src=\"/675x5White.jpg\"><br>");
	//document.write("<h3>" + title + "</h3>");
}