// header.js
// Copyright 2005 by Brent Barrett, All Rights Reserved

function ContactUs()
{
    window.open('http://www.bodenmaddox.com/contact.html','','width=640,height=400');
}

function drawHeader(psRootPrefix, psTitle)
{
   document.write("<TITLE>Boden Maddox Productions");
   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=\"#000000\" TEXT=\"#FFFFFF\">\n");

   document.write("<TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0>\n");
   document.write("<TR HEIGHT=64>\n");
   document.write("<TD COLSPAN=3 NOWRAP VALIGN=TOP BACKGROUND=\"" + psRootPrefix + "images/headerfill.jpg\">");
   document.write("<IMG BORDER=0 WIDTH=480 HEIGHT=64 SRC=\"" + psRootPrefix + "images/header.jpg\">");
   document.write("</TD>\n");
   document.write("</TR>\n");
   document.write("<TR HEIGHT=100%>\n");
   document.write("<TD WIDTH=128 NOWRAP VALIGN=TOP>");
   drawLeftSide(psRootPrefix);
   document.write("</TD>\n");
   document.write("<TD WIDTH=100% NOWRAP VALIGN=TOP>");

   // start inner table for body of document...
   document.write("<TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0>\n");
   //drawBannerAd(psRootPrefix);
   document.write("<TR>\n");
   document.write("<TD WIDTH=8 NOWRAP></TD>");
   document.write("<TD WIDTH=100% VALIGN=TOP>");
}

function drawLeftSide(psRootPrefix)
{
   document.write("<TABLE WIDTH=100%>");
   document.write("<TR HEIGHT=2><TD NOWRAP></TD></TR>");
   //document.write("<TR><TD><A CLASS=\"bmmenu\" HREF=\"" + psRootPrefix + "index.shtml\">Home</A></TD></TR>");
   //document.write("<TR><TD><A CLASS=\"bmmenu\" HREF=\"" + psRootPrefix + "forum/\">Forum</A></TD></TR>\n");
   //document.write("<TR><TD><A CLASS=\"bmmenu\" HREF=\"" + psRootPrefix + "bmp/index.shtml\">About BMP</A></TD></TR>\n");
   //document.write("<TR><TD><A CLASS=\"bmmenu\" HREF=\"javascript:ContactUs();\">Contact Us</A></TD></TR>\n");
   document.write("<TR HEIGHT=8><TD NOWRAP></TD></TR>\n");
   //document.write("<TR><TD><A CLASS=\"bmmenu\" HREF=\"" + psRootPrefix + "sweetsorrow/index.shtml\">Sweet Sorrow</A></TD></TR>\n");
   document.write("</TABLE>\n");

   document.write("<BR>\n");
}

function drawBannerAd(psRootPrefix)
{
   document.write("<TR HEIGHT=96>\n");
   document.write("<TD COLSPAN=3 WIDTH=100% NOWRAP VALIGN=MIDDLE ALIGN=CENTER>");
   document.write("<A TARGET=\"\" HREF=\"\"><IMG WIDTH=460 HEIGHT=60 SRC=\"" + psRootPrefix + "ads/banner/comingout.gif\"></A>\n");
   document.write("</TD>\n");
   document.write("</TR>\n");
}

