/** 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 Team Banner
  outstr1 = "<hr size=\"4\" class=\"line\" width=" + winWidth + " shade />";
  outstr1 += "<center><img src= '" + relPath + "redsheader.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 + "info/calendar.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkcalendar','','" + relPath + "mb/mb_calendar_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_calendar.gif\" alt=\"Calendar\" name=\"lkcalendar\" ";
  outstr1 += "border=\"0\" id=\"lkcalendar\" /></a>";

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

  outstr1 += "<img src=\"" + relPath + "mb/mb_teaminfo.gif\" alt=\"Teaminfo\" name=\"lkteaminfos\" ";
  outstr1 += "border=\"0\" id=\"lkteaminfo\" ";
  outstr1 += "onmouseover=\"MM_showMenu(window.menu_info,-40,32,null,'lkteaminfo')\" ";
  outstr1 += "onmouseout=\"MM_startTimeout();\" />";

  outstr1 += "<img src=\"" + relPath + "mb/mb_training.gif\" alt=\"training\" name=\"lkTraining\" ";
  outstr1 += "border=\"0\" id=\"lkTraining\" ";
  outstr1 += "onmouseover=\"MM_showMenu(window.menu_train,0,32,null,'lkTraining')\" ";
  outstr1 += "onmouseout=\"MM_startTimeout();\" />";

  outstr1 += "<img src=\"" + relPath + "mb/mb_ops.gif\" alt=\"operations\" name=\"lkOperations\" ";
  outstr1 += "border=\"0\" id=\"lkOperations\" ";
  outstr1 += "onmouseover=\"MM_showMenu(window.menu_ops,0,32,null,'lkOperations')\" ";
  outstr1 += "onmouseout=\"MM_startTimeout();\" />";
/*
  outstr1 += "<a href=\"" + relPath + "headlines/index.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkheadlines','','" + relPath + "mb/mb_headlines_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_headlines.gif\" alt=\"Headlines\" name=\"lkheadlines\" ";
  outstr1 += "border=\"0\" id=\"lkheadlines\" /></a>";
*/
  outstr1 += "<a href=\"" + relPath + "contacts.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lkcontacts','','" + relPath + "mb/mb_contacts_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_contacts.gif\" alt=\"Contacts\" name=\"lkcontacts\" ";
  outstr1 += "border=\"0\" id=\"lkcontacts\" /></a>";

  outstr1 += "<a href=\"" + relPath + "links/index.html\" ";
  outstr1 += "onmouseout=\"MM_swapImgRestore()\" onmouseover=\"MM_swapImage('lklinks','','" + relPath + "mb/mb_links_on.gif',1)\">";
  outstr1 += "<img src=\"" + relPath + "mb/mb_links.gif\" alt=\"Links\" name=\"lklinks\" ";
  outstr1 += "border=\"0\" id=\"lkcontacts\" /></a>";

  outstr1 += "</center>";

  document.write(outstr1);
}


