function buildFooter(previousHTML, nextHTML) {

   var text="";

   text += '<HR ALIGN=LEFT WIDTH="700">';

   text += '<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="700">';
   text += "<TR>";
      text += '<TD WIDTH="80%">';
         text += '<BR><FONT size="2">Copyright &copy; 1996-2007 Halcyon Monitoring Solutions, Inc.';
         text += '  All rights reserved.';
         text += '<BR><A HREF=http://www.HalcyonInc.com>http://www.HalcyonInc.com</A></FONT>';
      text += "</TD>";

      text += '<TD WIDTH="20%">';
         text += '<P ALIGN="right">';

         text += '<A HREF="#Top">';
         text += '<IMG SRC="arrow-up.gif" ALT="Top" BORDER="0"></A>';

         text += '<A HREF=';
         text += previousHTML;
         text += '><IMG SRC="arrow-back.gif" ALT="Previous" BORDER="0"></A>';

         text += '<A HREF=';
         text += nextHTML;
         text += '><IMG SRC="arrow-next.gif" ALT="Next" BORDER="0"></A>';

      text += "</TD>";
   text += "</TR>";
   text += "</TABLE>";

   document.write(text);
}
