function writeHeader(strTitle, shSubMenu)
{
   document.title = strTitle;
   document.bgColor = "#46A4D1";
   startBody(shSubMenu);
}

function writeTrailer(strDate, strYear)
{
  document.write("</TD></TR></TABLE><P><CENTER><HR WIDTH='50%'><FONT COLOR='WHITE' SIZE='-1'>Last Updated: " + strDate + "<BR>[mailto: <A CLASS='MAILME' HREF='mailto:mehve@firebasealpha.com'>mehve@firebasealpha.com</A>]<BR>Copyright &copy; " + strYear + " - All Rights Reserved.<BR></FONT></CENTER>");
}

function writeMenu(strName, strLink)
{
   document.write("<TR><TD><A HREF=\"" + strLink + "\">" + strName + "</A></TD></TR>");
}

function writeSubMenu(strName, strLink)
{
   document.write("<TR><TD>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&deg;&nbsp;<A HREF=\"" + strLink + "\"><FONT SIZE=\"-1\">" + strName + "</FONT></A></TD></TR>");
}

function startBody(shSubMenu)
{
   document.write(  "<IMG SRC=\"icons/logo.jpg\" Alt=\"mehve\"><TABLE WIDTH=\"100%\" CELLPADDING=\"0\" CELLSPACING=\"0\" BORDER=\"0\">" 
                  + "<TR><TD WIDTH=\"170\" VALIGN=\"TOP\">" 
                  + "<TABLE  CELLPADDING=\"0\" CELLSPACING=\"0\" BORDER=\"3\" WIDTH=\"100%\">");
   writeMenu("Home", "index.html");
   writeMenu("Updates (18 Oct/08)", "news.html");
   writeMenu("What is a <I>Mehve</I>?", "mehve.html");
   writeMenu("About me", "bio.html");
   if (shSubMenu == 2)
   {
      writeSubMenu("Resume", "resume.html\" TARGET=\"_blank");
   }
   writeMenu("Hobbies", "hobbies.html");
   if (shSubMenu == 3)
   {
      writeSubMenu("Anime", "anime.html");
      writeSubMenu("BlackBerry", "bb.html");
      writeSubMenu("Car - 350Z", "z.html");
      writeSubMenu("Firearms", "gun.html");
      writeSubMenu("Motorcycle - Ninja 250", "motorcycle.html");
      writeSubMenu("Paintball", "pball.html");
      writeSubMenu("DVD Collection", "movies.html");
      writeSubMenu("Game Collection", "games.html");
   }
   writeMenu("Paintball", "pball.html");
   if (shSubMenu == 4)
   {
      writeSubMenu("Gallery", "pbgallery.html");
      writeSubMenu("Primer - Equipment", "pbstart.html");
      writeSubMenu("Primer - Playing", "pbplay.html");
      writeSubMenu("Primer - Lingo", "pblingo.html");
   }
   writeMenu("Travels", "travel.html");
   writeMenu("Marine Aquarium", "aquarium.html");
   if (shSubMenu == 1)
   {
      writeSubMenu("Tank Timeline", "aquarium.html");
      writeSubMenu("Current Residents", "aq-now.html");
      writeSubMenu("Past Residents", "aq-past.html");
      writeSubMenu("Misc Pictures", "aq-pix.html");
   }
   writeMenu("House", "house.html");
   if (shSubMenu == 5)
   {
      writeSubMenu("Home Theater", "theater.html");
      writeSubMenu("Theater Construction", "ht-build.html");
   }
   writeMenu("LiveJournal", "http://mehve.livejournal.com\" target=\"_blank");
   writeMenu("Links", "links.html");
   document.write("</TABLE></TD><TD WIDTH=\"15\">&nbsp;</TD><TD VALIGN=\"TOP\">");
}
