// footer.js
// Copyright 2005 by Brent Barrett, All Rights Reserved

function drawFooter(psRootPrefix)
{
   var _d, _year;

   document.write("</TD>\n");
   document.write("<TD WIDTH=8 NOWRAP></TD>");
   document.write("</TR></TABLE>\n"); // close inner table
   document.write("</TD><TD WIDTH=128 ROWSPAN=2 VALIGN=TOP ALIGN=CENTER NOWRAP>");
   drawRightSide(psRootPrefix);
   document.write("</TD></TR></TABLE>\n"); // close most outer table

   document.write("<BR/><BR/><TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0>\n");
   document.write("<TR>\n");
   document.write("<TD WIDTH=100% HEIGHT=80 NOWRAP VALIGN=TOP ALIGN=CENTER CLASS=\"footer\"><BR>\n");

   _d = new Date();
   _year = _d.getYear();
   if (_year < 1000)
      _year += 1900;

   document.write("Copyright " + _year + " Brent Barrett, All Rights Reserved.<BR>\n");
   document.write("</TD>\n");
   document.write("</TR>\n");
   document.write("</TABLE>\n");

   document.write("</BODY>\n");
   document.write("</HTML>\n");
}

function drawRightSide(psRootPrefix)
{
    document.write("<BR/>\n");
}


