/** Header 2 */
function dispHdr() {
   var winWidth;
   var winHeight;
   var browserType;
   var outstr1;


   // Determine the type of browser and the window parameters
   if (window.innerWidth)              // All browsers except IE
      {
      winWidth = window.innerWidth;
      winHeight = window.innerHeight;
      browserType = "FireFox";
      }
   else if (document.documentElement && document.documentElement.clientWidth)
      {  // IE 6 with DOCTYPE
      winWidth = document.documentElement.clientWidth;
      winHeight = document.documentElement.clientHeight;
      browserType = "IE";
      }
   else if (document.body.clientWidth)
      {  // IE Pre 6
      winWidth = document.body.clientWidth;
      winHeight = document.body.clientHeight;
      browserType = "IE";
      }
   else
      {
      winWidth = 2000;
      winHeight = 200
      browserType = "NoIdea";
      }

  winWidth = winWidth*98/100;
  if (winWidth > 1024)
      winWidth = 1024;
  // Write out the Gymnast Banner
  outstr1 = "<hr size=\"4\" class=\"line\" width=" + winWidth + " shade />";
  outstr1 += "<center><img src= '" + relPath + "banner.gif' width=" + winWidth + " height=" + winWidth/5 + " align=center></center>";

  outstr1 += "<hr size=\"4\" class=\"line\" width=" + winWidth + "  shade />";
  outstr1 += "<center>";

  outstr1 += "<p><a href=\"" + relPath + "index.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkhome','','" + relPath + "mb/mb_home_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_home.gif\" alt=\"Home\" name=\"lkhome\" ";
  outstr1 += "border=\"0\" id=\"lkhome\" /></a>";

/*
  outstr1 += "<a href=\"" + relPath + "forum/YaBB.pl\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkforum','','" + relPath + "mb/mb_forum_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_forum.gif\" alt=\"Forum\" name=\"lkforum\" width=\"82\" ";
  outstr1 += "height=\"32\" border=\"0\" id=\"lkforum\" /></a>";
*/
  outstr1 += "<img src=\"" + relPath + "mb/mb_team.gif\" alt=\"Team\" name=\"Team\" id=\"Team\" ";
  outstr1 += "onmouseover=\"MM_showMenu(window.mm_menu_0224074956_0,0,32,null,'Team')\" ";
  outstr1 += "onmouseout=\"MM_startTimeout();\" />";

  outstr1 += "<img src=\"" + relPath + "mb/mb_coaches.gif\" alt=\"Coaches\" name=\"Coaches\" id=\"Coaches\" ";
  outstr1 += "onmouseover=\"MM_showMenu(window.mm_menu_0226163754_0,0,32,null,'Coaches')\" ";
  outstr1 += "onmouseout=\"MM_startTimeout();\" />";

  outstr1 += "<img src=\"" + relPath + "mb/mb_pictures.gif\" alt=\"Pictures\" name=\"lkPictures\" ";
  outstr1 += "border=\"0\" id=\"lkPictures\" ";
  outstr1 += "onmouseover=\"MM_showMenu(window.mm_menu_0224073324_0,-40,32,null,'lkPictures')\" ";
  outstr1 += "onmouseout=\"MM_startTimeout();\" />";

  outstr1 += "<a href=\"" + relPath + "team/meetsched.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkschedule','','" + relPath + "mb/mb_schedule_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_schedule.gif\" alt=\"Schedule\" name=\"lkschedule\" ";
  outstr1 += "border=\"0\" id=\"lkschedule\" /></a>";

  outstr1 += "<img src=\"" + relPath + "mb/mb_results.gif\" alt=\"Results\" name=\"lkResults\" ";
  outstr1 += "border=\"0\" id=\"lkResults\" ";
  outstr1 += "onmouseover=\"MM_showMenu(window.mm_menu_0226163755_0,-300,32,null,'lkResults')\" ";
  outstr1 += "onmouseout=\"MM_startTimeout();\" />";

  outstr1 += "<a href=\"" + relPath + "sweetheart/index.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lksweet','','" + relPath + "mb/mb_sweetheart_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_sweetheart.gif\" alt=\"Sweetheart\" name=\"lksweet\" ";
  outstr1 += "border=\"0\" id=\"lksweet\" /></a>";

  outstr1 += "<a href=\"" + relPath + "camp/index.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkcamps','','" + relPath + "mb/mb_camps_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_camps.gif\" alt=\"Camps\" name=\"lkcamps\" ";
  outstr1 += "border=\"0\" id=\"lkcamps\" /></a>";

  outstr1 += "<img src=\"" + relPath + "mb/mb_links.gif\" alt=\"Links\" name=\"image3\" id=\"image3\" ";
  outstr1 += "onmouseover=\"MM_showMenu(window.mm_menu_0226095957_0,-100,32,null,'image3')\" ";
  outstr1 += "onmouseout=\"MM_startTimeout();\" />";

  outstr1 += "<img src=\"" + relPath + "mb/mb_history.gif\" alt=\"History\" name=\"image4\" id=\"image4\" ";
  outstr1 += "onmouseover=\"MM_showMenu(window.mm_menu_0226102130_0,0,32,null,'image4')\" onmouseout=\"MM_startTimeout();\" />";

  outstr1 += "<a href=\"" + relPath + "aboutwpg.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkaboutus','','" + relPath + "mb/mb_aboutus_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_aboutus.gif\" alt=\"About Us\" name=\"lkaboutus\" ";
  outstr1 += " border=\"0\" id=\"lkaboutus\" /></a></p>";

  outstr1 += "</center>";

  document.write(outstr1);
}
