function displayMinHeader(login) {
	var doc = document.forms[0];
	
	document.writeln("<table width='744' height='81' cellpadding='0' cellspacing='0'>")
	document.writeln("  <tr valign='top'>")
	document.writeln("    <td width='180' height='81' align='left'>")
	document.writeln("      <table width='180' cellspacing='0' cellpadding='0' class='nav'>")
	document.writeln("        <tr>")
	document.writeln("          <td valign='top'>")
	document.writeln("            <a href='" + doc.PublicHomeURL.value + "' target='_top' onMouseOver=\"window.status='Go to SV Harbor Home Page';return true\" onMouseOut=\"window.status='';return true\">")
	document.writeln("            <img src='" + doc.Image_lighthouse_logo.value + "' height='81' width='169' align='left' alt='SVHarbor - Home' border='0'>")
	document.writeln("            </a>")
	document.writeln("          </td>")
	document.writeln("        </tr>")
	document.writeln("      </table>")
	document.writeln("    </td>")
	document.writeln("    <td width='10'></td>")
	document.writeln("    <td width='554' height='81' align='left' valign='middle'>");

	if (login) {
		document.writeln("      <a href='" + doc.LoginURL.value + "' onMouseOver=\"window.status='Login';return true\" onMouseOut=\"window.status='';return true\"><span class='dBlueText12'>Login</span></a>");
	}

	document.writeln("    <hr></td>");
	document.writeln("  </tr>");
	document.writeln("</table>");
}