// header.js
// Source code is Copyright 2005 by Brent Barrett, All Rights Reserved

function ContactUs()
{
    window.open('http://oldschoolbasketballacademy.net/contact.html','','width=640,height=400');
}

function drawHeader(psRootPrefix, psTitle)
{
   document.write("<TITLE>Old School Basketball Academy");
   if (psTitle != "")
      document.write(": " + psTitle);
   document.write("</TITLE>\n");

   document.write("<META HTTP-EQUIV=\"pragma\" CONTENT=\"no-cache\" />\n");
   document.write("<META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=iso-8859-1\" />\n");
   document.write("<LINK REL=\"stylesheet\" TITLE=\"default\" TYPE=\"text/css\" HREF=\"" + psRootPrefix + "style.css\" />\n");
   document.write("</HEAD>\n");

   document.write("<BODY LEFTMARGIN=0 RIGHTMARGIN=0 TOPMARGIN=0 BOTTOMMARGIN=0 BGCOLOR=\"#CCCCCC\" TEXT=\"#000000\" LINK=\"#FFFF00\" ALINK=\"#FFFF00\" VLINK=\"#FFFF00\">\n");

   document.write("<TABLE BGCOLOR=\"#EE7700\" WIDTH=100% CELLPADDING=0 CELLSPACING=0>\n");
   document.write("<TR>\n");
   document.write("<TD VALIGN=TOP><A HREF=\"" + psRootPrefix + "index.html\"><IMG SRC=\"" + psRootPrefix + "images/logo.jpg\" WIDTH=640 HEIGHT=80 BORDER=0 ALT=\"Welcome to the Old School Basketball Academy\"></A></TD>\n");
   document.write("</TR>\n");
   document.write("<TR HEIGHT=4 BGCOLOR=\"#FFFFFF\"><TD NOWRAP></TD></TR>\n");
   document.write("</TABLE>\n");
}


