/** 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;
  // Write out the Gymnast Banner
  outstr1 = "<center>";
  outstr1 += "<img src=\"" + relPath + "rsgtitleblock.jpg\" width=\"1024\" height=\"200\" align=center>";
  
  outstr1 += "<br><img src=\"" + relPath + "mb/mb_spacer.gif\" width=\"92\">";

  outstr1 += "<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\" width=\"60\" ";
  outstr1 += "height=\"30\" border=\"0\" id=\"lkhome\" /></a>";
  
  outstr1 += "<a href=\"" + relPath + "facilities/facilities.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkFacilities','','" + relPath + "mb/mb_facilities_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_facilities.gif\" alt=\"Facilities\" name=\"lkFacilities\" width=\"100\" ";
  outstr1 += "height=\"30\" border=\"0\" id=\"lkFacilities\" /></a>";
  
  outstr1 += "<a href=\"" + relPath + "coaches/coaches.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkCoaches','','" + relPath + "mb/mb_coaches_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_coaches.gif\" alt=\"Coaches\" name=\"lkCoaches\" width=\"80\" ";
  outstr1 += "height=\"30\" border=\"0\" id=\"lkCoaches\" /></a>";
  
  outstr1 += "<a href=\"" + relPath + "classes/classes.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkClasses','','" + relPath + "mb/mb_classes_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_classes.gif\" alt=\"Classes\" name=\"lkClasses\" width=\"80\" ";
  outstr1 += "height=\"30\" border=\"0\" id=\"lkClasses\" /></a>";
  
  outstr1 += "<a href=\"" + relPath + "team/team.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkTeam','','" + relPath + "mb/mb_team_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_team.gif\" alt=\"Team\" name=\"lkTeam\" width=\"60\" ";
  outstr1 += "height=\"30\" border=\"0\" id=\"lkTeam\" /></a>";
  
  outstr1 += "<a href=\"" + relPath + "meets/meets.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkMeets','','" + relPath + "mb/mb_meets_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_meets.gif\" alt=\"Meets\" name=\"lkMeets\" width=\"80\" ";
  outstr1 += "height=\"30\" border=\"0\" id=\"lkMeets\" /></a>";
  
  outstr1 += "<a href=\"" + relPath + "camps/camps.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\" width=\"80\" ";
  outstr1 += "height=\"30\" border=\"0\" id=\"lkCamps\" /></a>";

  outstr1 += "<a href=\"" + relPath + "birthdays/birthdays.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkBirthdays','','" + relPath + "mb/mb_birthdays_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_birthdays.gif\" alt=\"Birthdays\" name=\"lkBirthdays\" width=\"100\" ";
  outstr1 += "height=\"30\" border=\"0\" id=\"lkBirthdays\" /></a>";
 
  outstr1 += "<a href=\"" + relPath + "locations/locations.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkLocations','','" + relPath + "mb/mb_locations_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_locations.gif\" alt=\"Locations\" name=\"lkLocations\" width=\"100\" ";
  outstr1 += "height=\"30\" border=\"0\" id=\"lkLocations\" /></a>";
  
  outstr1 += "<a href=\"" + relPath + "contactus/contactus.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkContactUs','','" + relPath + "mb/mb_contactus_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_contactus.gif\" alt=\"ContactUs\" name=\"lkContactUs\" width=\"100\" ";
  outstr1 += "height=\"30\" border=\"0\" id=\"lkContactUs\" /></a>";
 
  outstr1 += "<img src=\"" + relPath + "mb/mb_spacer.gif\" width=\"92\"></p>";
  
  outstr1 += "</center>";

  document.write(outstr1);
}
