<!-- Top of Page HTML here -->
var headerHTML1 = new String("\
<!-- End Masthead -->\
<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\
  <tr>\
    <td width=\"50%\" background=\"images/top02.jpg\">\
      <img src=\"images/top01.jpg\" width=\"343\" height=\"70\" alt=\"Home\" border=\"0\"></a></td>\
    <td width=\"100%\" background=\"images/top02.jpg\">\
    </td>\
    <td width=\"50%\" background=\"images/top02.jpg\">\
      <img src=\"images/top03.jpg\" width=\"446\" height=\"70\" alt=\"Home\" border=\"0\"></a></td>\
  </tr>\
</table>\
<!-- End Masthead -->\
<!-- NAVigation Bar -->\
<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\
  <tr>\
    <td width=\"50%\" height=\"25\" background=\"../images/fil_153x61.gif\">\
      <img src=\"../images/clear.gif\" width=\"1\" height=\"1\"></td>\
    <!-- NAV Rollovers -->\
    <td width=\"50%\" background=\"../images/fil_153x61.gif\">\
      <img src=\"../images/clear.gif\" width=\"1\" height=\"1\"></td>\
  </tr>\
</table>\
<!-- End NAV -->\
");

var headerHTML2 = new String("\
<table width=\"80%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\
  <tr nowrap>\
    <td colspan=3 width=\"33\" height=\"20\" >\
      <img src=\"images/clear.gif\" width=\"1\" height=\"20\"></td>\
  </tr>\
  <tr nowrap align=\"center\">\
    <td valign=\"top\" align=\"right\" nowrap>\
      </td>\
     <td valign=\"top\" align=\"left\" nowrap>\
      </td>\
      <td valign=\"top\" align=\"left\" nowrap>\
      </td>\
  </tr>\
</table>\
");

//Search Results page should call this function
function doHeader() {
    document.open();
    document.write(headerHTML1);
    document.write(headerHTML2);
}
   

