
function displayHeader() {
	var doc = document.forms[0];
	
	
	// *** Display Logo Area ***
	document.writeln("&nbsp;&nbsp;");
	document.writeln("<td colspan='6' height='40' valign='middle'>");
	document.writeln("  <table width='100%' height='40' border='0' cellspacing='0' cellpadding='0' valign='top'>");
	document.writeln("    <tr>");
	document.writeln("      <td width='235' height='40' valign='top'>");
	document.writeln("        <a href='" + rsrcPath_HarborHome + "' target='_top' onMouseOver=\"window.status='SVHarbor Home Page';return true\" onMouseOut=\"window.status='';return true\">");
	document.writeln("        <img src='" + imgPath_SVHLogo + "' align='left' alt='SVHarbor - Home' border='0'/>");
	document.writeln("        </a>");
	document.writeln("        <a href='" + rsrcPath_CCHome + "' target='_top' onMouseOver=\"window.status='Common Code Home Page';return true\" onMouseOut=\"window.status='';return true\">");
	document.writeln("        <img src='" + imgPath_CCLogo + "' align='left' alt='Common Code - Home' border='0'/>");
	document.writeln("        </a>");
	document.writeln("      </td>");
	document.writeln("      <td width='10'>&nbsp; </td>");
	
	// *** Display Menu Area ***
	document.writeln("<td width='360' colspan='2' valign='top' class='headerMenu'>")

	// Home
	document.writeln("      <a href='" + rsrcPath_HarborHome + "'>SVHarbor</a>");

	// About
	document.writeln("      &nbsp;&nbsp;&nbsp;&nbsp;<a href='#'onMouseOver=\"popUp('elMenu2',event);\" onMouseOut=\"popDown('elMenu2')\">About</a>");
		
    	// Contact us
	document.writeln("     &nbsp;&nbsp;&nbsp;&nbsp;<a href='SVCCContactNew.html'>Contact Us</a>");

	// Help
	document.writeln("      &nbsp;&nbsp;&nbsp;&nbsp;<a href='#' onMouseOver=\"popUp('elMenu1',event);\" onMouseOut=\"popDown('elMenu1')\">Help</a>");
		
	document.writeln("      </td>");

	document.writeln("<td width='0'>&nbsp</td>");
	
	// *** Display User Location Info Area ***
	//document.writeln("      <td width='175' align='center' valign='top' class='userInfoText'>")
	//document.writeln(         doc.PortalUserName.value + "<br>")
	//document.writeln("      </td>");

	document.writeln("    </tr>");
  	document.writeln("  </table>");
	document.writeln("&nbsp;&nbsp;");
  	document.writeln("</td>");
   
}