function buildHeader () {

   var text="";
   text += '<LINK REL="SHORTCUT ICON" HREF="./favicon.ico">';
   text += '<TABLE  COLS=3 CELLPADDING="10" WIDTH="640" NOSAVE>';
   text += '<TR>';
      text += '<TD ALIGN="center" VALIGN="top" WIDTH="100">';
         text += '<IMG SRC="logo-Halcyon.gif" WIDTH="100" HEIGHT="132">';
      text += '</TD>';

      text += '<TD ALIGN="center" WIDTH="340">';
         text += '<H1>Halcyon PrimeAlert<FONT SIZE="4"><SUP>&#174</SUP></FONT><BR>';
         text += 'Agent for AIX</B></H1><BR>';
         text += '<H2>Version 1.0.0</B></H2>';
      text += '</TD>';

      text += '<TD ALIGN="center" VALIGN="top" WIDTH="100">';
         text += '<IMG SRC="logo-PrimeAlert.gif" WIDTH="100" HEIGHT="132">';
      text += '</TD>';
   text += '</TR>';
   text += '</TABLE>';

   text += '<HR ALIGN=LEFT SIZE=4 NOSHADE WIDTH="640">';

   text += '<TABLE border="0" cellspacing="0" CELLPADDING="0" WIDTH="640"><BR>';
   text += '<TR>';
      text += '<TD VALIGN="top">';
         text += '<BLOCKQUOTE><B><FONT SIZE=+1>Contents</FONT></B></BLOCKQUOTE>';
         text += '<UL>';
            text += '<LI><A HREF="AIXHardwareAlert/HALAIXHardwareAlert-h.html">PrimeAlert Hardware Monitor</A></LI>';
            text += '<LI><A HREF="AIXSystemAlert/HALAIXSystemAlert-h.html">PrimeAlert SystemMonitor</A></LI>';
            text += '<LI><A HREF="AgentHealth/HALAgentStatistics-h.html">PrimeAlert AgentHealth</A></LI>';
            text += '<LI><A HREF="MIB-II/HALMIBII-h.html">PrimeAlert MIB-II System</A></LI>';
         text += '</UL>';
         
      text += '</TD>';

      text += '<TD VALIGN="top">';
         text += '<IMG SRC="HALAIXAgent-logo.gif">';
      text += '</TD>';
   text += '</TR>';
   text += '</TABLE>';

   text += '<HR ALIGN=LEFT SIZE=4 NOSHADE WIDTH="640">';


   var currentURL=location.href;
   var re = /.*\//;
   currentURL=currentURL.replace(re,"");

   var replaceString = "class=currentPage";
   var searchExp = new RegExp();

   searchExp.compile("HREF" + "\\s*=\\s*" + "\"\\s*" + currentURL + "\\s*\""  ,"i");

   text = text.replace(searchExp,replaceString);

   document.write(text);
}
