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

function drawFooter(psRootPrefix)
{
   document.write("<BR/></TD>\n");
   document.write("<TD HEIGHT=100% WIDTH=4 BGCOLOR=\"#FFFFFF\" NOWRAP></TD>\n");
   document.write("<TD HEIGHT=100% BGCOLOR=\"#000040\" NOWRAP WIDTH=4 VALIGN=TOP CLASS=\"menu\"></TD>\n");
   document.write("<TD HEIGHT=100% BGCOLOR=\"#000040\" NOWRAP WIDTH=124 VALIGN=TOP ALIGN=CENTER CLASS=\"menu\">\n");
   document.write("<SPAN CLASS=\"rightbar\"><BR/>\n");

   document.write("<BR/><BR/>\n");

   document.write("<P ALIGN=CENTER><SPAN CLASS=\"rightbarbigger\"><IMG CLASS=\"framedphoto\" WIDTH=110 HEIGHT=165 SRC=\"" + psRootPrefix + "images/bherenda.jpg\" ALT=\"Bill Herenda\"><BR/>Bill Herenda</SPAN><SPAN CLASS=\"HeadshotCredit\"><BR/>Photo courtesy of<br/>University of California<br/>Davis, Athletics</SPAN></P>\n");

   document.write("<P ALIGN=LEFT>\n");
   document.write("&nbsp;<IMG BORDER=0 WIDTH=10 HEIGHT=10 SRC=\"" + psRootPrefix + "images/menucaret.gif\"><A HREF=\"" + psRootPrefix + "billbio.html\">Read Bill's Bio</A><BR>\n");
   document.write("&nbsp;<IMG BORDER=0 WIDTH=10 HEIGHT=10 SRC=\"" + psRootPrefix + "images/menucaret.gif\"><A TARGET=\"BillAudio\" HREF=\"" + psRootPrefix + "audio/BillHerendaUCDMensBasketball.mp3\">Listen to Bill</A><BR>\n");
   document.write("</P>\n");

   document.write("<BR/><BR/>\n");

   document.write("<P ALIGN=CENTER><A TARGET=\"MERCH\" HREF=\"" + psRootPrefix + "downloads/OSBAMerchandise.pdf\"><IMG BORDER=0 WIDTH=100 HEIGHT=100 SRC=\"" + psRootPrefix + "images/merchandise.jpg\"></A></P>\n");
   document.write("<P ALIGN=CENTER><A HREF=\"" + psRootPrefix + "testimonials.html\"><IMG BORDER=0 WIDTH=100 HEIGHT=100 SRC=\"" + psRootPrefix + "images/testimonials.jpg\"></A></P>\n");
   document.write("<P ALIGN=CENTER><A HREF=\"" + psRootPrefix + "gallery/\"><IMG BORDER=0 WIDTH=100 HEIGHT=100 SRC=\"" + psRootPrefix + "images/gallery.jpg\"></A></P>\n");
   document.write("<P ALIGN=CENTER><A HREF=\"" + psRootPrefix + "video/\"><IMG BORDER=0 WIDTH=100 HEIGHT=100 SRC=\"" + psRootPrefix + "images/video.jpg\"></A></P>\n");

   document.write("<BR/>\n");

   document.write("</SPAN>\n");
   document.write("</TD>\n");
   document.write("</TR>\n");
   document.write("</TABLE>\n");

   document.write("<TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0>\n");
   document.write("<TR HEIGHT=4 BGCOLOR=\"#FFFFFF\"><TD NOWRAP></TD></TR>\n");
   document.write("</TABLE>\n");
}

function drawCopyright()
{
   var _d, _year;

   document.write("<TABLE BGCOLOR=\"#EE7700\" 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 + " Old School Basketball Academy, 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");
}


