function drawFooter(psRootPrefix)
{
   drawFooterEx(psRootPrefix, true);
}

function drawFooterEx(psRootPrefix, pbDrawTable)
{
   var _d, _year;

   if (pbDrawTable)
   {
      document.write("<TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0>\n");
      document.write("<TR>\n");
      document.write("<TD WIDTH=128 BGCOLOR=\"#000000\" NOWRAP VALIGN=MIDDLE></TD>\n");
      document.write("<TD WIDTH=100% NOWRAP VALIGN=MIDDLE ALIGN=CENTER>\n");
      document.write("<FONT SIZE=2 FACE=\"Helvetica,Arial\" COLOR=\"#CCCCCC\"><B><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("All Farscape images, sounds and other media is Copyright Henson, Hallmark and/or SFC.\n");
      document.write("</B></FONT>\n");
      document.write("</TD>\n");
      document.write("</TR>\n");
      document.write("</TABLE>\n");
   }

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

