 // Declare some variables to hold the URL's to the links that will change every season.
// Updating values here will update them throughout the website.

var msked = "0910/msked0910.html";
var wsked = "0910/wsked0910.html";
var mstats = "0809/mstats/confstat.htm";
var wstats = "0809/wstats/confstat.htm";
var mstandings = "0910/mstandings0910.html";
var wstandings = "0910/wstandings0910.html";
var headlines = "2headlines0809.html";
var releases = "0809/releases0809.html";

//
// WriteMensStandings(IsFull)
//
// This function creates the HTML for the table holding the men's standings.
//
// If the caller passes IsFull = true, the full standings will be printed; 
// otherwise, the summary standings (front page) will be printed. The summary
// standings do not include GF and GA.
//

function WriteMensStandings(IsFull)
{
  document.write(
  "<table border=0 cellspacing=0 cellpadding=0 class=bodytext>\n"
  );  

  document.write(
  "<tr>\n" +
  "  <td><b>Men's Teams&nbsp;&nbsp;&nbsp;"
  );


  if (IsFull == true)
  {
    document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
  }

  document.write(
  "  </b></td>\n" +
  "  <td align=center><b>&nbsp;&nbsp;W&nbsp;</b></td>\n" +
  "  <td align=center><b>&nbsp;&nbsp;L&nbsp;</b></td>\n" +
  "  <td align=center><b>&nbsp;&nbsp;T&nbsp;</b></td>\n" +
  "  <td align=center><b>&nbsp;&nbsp;Pts&nbsp;</b></td>\n"
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center><b>&nbsp;&nbsp;GF&nbsp;</b></td>\n" +
    "  <td align=center><b>&nbsp;&nbsp;GA&nbsp;</b></td>\n"
    );
  } 



  //---- Start Lake Forest
  document.write(
  "</tr>\n" + 
   "</tr>\n" +
 "  <td>Lake Forest (0-0-0)</td>\n" +  // Team Name
  "  <td align=center>0</td>\n" +       // W (conference)
  "  <td align=center>0</td>\n" +       // L (conference)
  "  <td align=center>0</td>\n" +       // T (conference)
  "  <td align=center>0</td>\n"         // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference) 
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  }
  //---- End Lake Forest 

//---- Start St. Norbert
  document.write(
  "</tr>\n" +
"<tr style='background-color: #f3ebc4'>\n" + 
 "  <td>St. Norbert (0-0-0)</td>\n" + // Team Name
  "  <td align=center>0</td>\n" +          // W (conference)
  "  <td align=center>0</td>\n" +          // L (conference)
  "  <td align=center>0</td>\n" +          // T (conference)
  "  <td align=center>0</td>\n"            // Points (conference)


  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +    // GF (conference)
    "  <td align=center>0</td>\n"      // GA (conference)
    );
  }
  //---- End St. Norbert


 //---- Start St. Scholastica
  document.write(
  "</tr>\n" + 
   "<tr>\n" +
  "  <td>St. Scholastica (0-0-0)</td>\n" +  // Team Name
  "  <td align=center>0</td>\n" +           // W (conference)
  "  <td align=center>0</td>\n" +           // L (conference)
  "  <td align=center>0</td>\n" +           // T (conference)
  "  <td align=center>0</td>\n"             // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference) 
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  } 
  //---- End St. Scholastica


 //---- Start Eau Claire
  document.write(
  "</tr>\n" +
      "<tr style='background-color: #f3ebc4'>\n" +
  "  <td>UW-Eau Claire (0-0-0)</td>\n" +  // Team Name
  "  <td align=center>0</td>\n" +         // W (conference)
  "  <td align=center>0</td>\n" +         // L (conference)
  "  <td align=center>0</td>\n" +         // T (conference)
  "  <td align=center>0</td>\n"           // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference)
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  }
  //---- End Eau Claire




  //---- Start River Falls
  document.write(
  "</tr>\n" +
      "<tr>\n" +
 "  <td>UW-River Falls (0-0-0)</td>\n" +  // Team Name
  "  <td align=center>0</td>\n" +          // W (conference)
  "  <td align=center>0</td>\n" +          // L (conference)
  "  <td align=center>0</td>\n" +          // T (conference)
  "  <td align=center>0</td>\n"            // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference) 
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  } 
  //---- End River Falls


 

  //---- Start Stevens Point
  document.write(
  "</tr>\n" +
  "<tr style='background-color: #f3ebc4'>\n" +
 "  <td>UW-Stevens Point (0-0-0)</td>\n" +  // Team Name
  "  <td align=center>0</td>\n" +            // W (conference)
  "  <td align=center>0</td>\n" +            // L (conference)
  "  <td align=center>0</td>\n" +            // T (conference)
  "  <td align=center>0</td>\n"              // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference)
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  }
  //---- End Stevens Point



  //---- Start Stout
  document.write(
  "</tr>\n" + 
   "<tr>\n" +
  "  <td>UW-Stout (0-0-0)</td>\n" +     // Team Name
  "  <td align=center>0</td>\n" +       // W (conference)
  "  <td align=center>0</td>\n" +       // L (conference)
  "  <td align=center>0</td>\n" +       // T (conference)
  "  <td align=center>0</td>\n"         // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference) 
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  } 
  //---- End Stout







 //---- Start Superior
  document.write(
  "</tr>\n" +
  "<tr style='background-color: #f3ebc4'>\n" +
 "  <td>UW-Superior (0-0-0)</td>\n" +  // Team Name
  "  <td align=center>0</td>\n" +       // W (conference)
  "  <td align=center>0</td>\n" +       // L (conference)
  "  <td align=center>0</td>\n" +       // T (conference)
  "  <td align=center>0</td>\n"         // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference)
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  }
  //---- End Superior


  document.write(
  "</tr>\n"
  );

  if (IsFull != true)
  {
    document.write(
    "<tr>\n" +
    "  <td colspan=5>\n" +
    "    <a href='" + mstandings + "' style='color: #2c3687'>Full Men's Standings >></a>\n" +
    "  </td>\n" +
    "</tr>\n"
    );
  }

  document.write(
  "</table>\n"
  );

  return true;
}


//
// WriteWomensStandings(IsFull)
//
// This function creates the HTML for the table holding the women's standings.
//
// If the caller passes IsFull = true, the full standings will be printed; 
// otherwise, the summary standings (front page) will be printed.
//
function WriteWomensStandings(IsFull)
{
  document.write(
  "<table border=0 cellspacing=0 cellpadding=0 class=bodytext>\n"
  );

  document.write(
  "<tr>\n" +
  "  <td><b>Women's Teams"
  );

  if (IsFull == true)
  {
    document.write("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;");
  }
 
  document.write(
  " </b></td>\n" +
  "  <td align=center><b>&nbsp;&nbsp;W&nbsp;</b></td>\n" +
  "  <td align=center><b>&nbsp;&nbsp;L&nbsp;</b></td>\n" +
  "  <td align=center><b>&nbsp;&nbsp;T&nbsp;</b></td>\n" +
  "  <td align=center><b>&nbsp;&nbsp;Pts&nbsp;</b></td>\n"
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center><b>&nbsp;&nbsp;GF&nbsp;</b></td>\n" +
    "  <td align=center><b>&nbsp;&nbsp;GA&nbsp;</b></td>\n"
    );
  } 


  //---- Start Concordia
  document.write(
  "</tr>\n" +
     "<tr>\n" +
  "  <td>Concordia (0-0-0)</td>\n" + // Team Name
  "  <td align=center>0</td>\n" +        // W (conference)
  "  <td align=center>0</td>\n" +        // L (conference)
  "  <td align=center>0</td>\n" +        // T (conference)
  "  <td align=center>0</td>\n"          // Points (conference)
  );


  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference) 
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  } 
  //---- End Concordia





  //---- Start Finlandia
  document.write(
  "</tr>\n" +
       "<tr style='background-color: #f3ebc4'>\n" +
  "  <td>Finlandia (0-0-0)</td>\n" +    // Team Name
  "  <td align=center>0</td>\n" +       // W (conference)
  "  <td align=center>0</td>\n" +       // L (conference)
  "  <td align=center>0</td>\n" +       // T (conference)
  "  <td align=center>0</td>\n"         // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference) 
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  }  
  //---- End Finlandia



  

 



 

       //---- Start Lake Forest
  document.write(
  "</tr>\n" +
     "<tr>\n" +
 "  <td>Lake Forest (0-0-0)</td>\n" +  // Team Name
  "  <td align=center>0</td>\n" +       // W (conference)
  "  <td align=center>0</td>\n" +       // L (conference)
  "  <td align=center>0</td>\n" +       // T (conference)
  "  <td align=center>0</td>\n"         // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference)
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  }
  //---- End Lake Forest



  //---- Start Eau Claire
  document.write(
  "</tr>\n" +
    "<tr style='background-color: #f3ebc4'>\n" +
  "  <td>UW-Eau Claire (0-0-0)</td>\n" + // Team Name
  "  <td align=center>0</td>\n" +        // W (conference)
  "  <td align=center>0</td>\n" +        // L (conference)
  "  <td align=center>0</td>\n" +        // T (conference)
  "  <td align=center>0</td>\n"          // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference) 
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  } 
  //---- End Eau Claire


     //---- Start River Falls
  document.write(
  "</tr>\n" +
   "<tr>\n" +
"  <td>UW-River Falls (0-0-0)</td>\n" +  // Team Name
  "  <td align=center>0</td>\n" +          // W (conference)
  "  <td align=center>0</td>\n" +          // L (conference)
  "  <td align=center>0</td>\n" +          // T (conference)
  "  <td align=center>0</td>\n"            // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference)
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  }
  //---- End River Falls



  //---- Start Stevens Point
  document.write(
  "</tr>\n" +
  "<tr style='background-color: #f3ebc4'>\n" +
 "  <td>UW-Stevens Point (0-0-0)</td>\n" +     // Team Name
  "  <td align=center>0</td>\n" +               // W (conference)
  "  <td align=center>0</td>\n" +               // L (conference)
  "  <td align=center>0</td>\n" +               // T (conference)
  "  <td align=center>0</td>\n"                 // Points (conference)
  );

    if (IsFull == true)
    {
      document.write(
      "  <td align=center>0</td>\n" +     // GF (conference) 
      "  <td align=center>0</td>\n"       // GA (conference)
      );
    }
  //---- End Stevens Point
  



      //---- Start Superior
  document.write(
  "</tr>\n" +
    "<tr>\n" +
 "  <td>UW-Superior (0-0-0)</td>\n" +  // Team Name
  "  <td align=center>0</td>\n" +       // W (conference)
  "  <td align=center>0</td>\n" +       // L (conference)
  "  <td align=center>0</td>\n" +       // T (conference)
  "  <td align=center>0</td>\n"         // Points (conference)
  );

  if (IsFull == true)
  {
    document.write(
    "  <td align=center>0</td>\n" +     // GF (conference)
    "  <td align=center>0</td>\n"       // GA (conference)
    );
  }
  //---- End Superior









 








  
  





 
  document.write(
  "</tr>\n"
  );

  if (IsFull != true)
  {
    document.write(
    "<tr>\n" +
    "  <td colspan=5>\n" +
    "    <a href='" + wstandings + "' style='color: #2c3687'>Full Women's Standings >></a>\n" +
    "  </td>\n" +
    "</tr>\n"
    );
  }

  document.write(
  "</table>\n"
  );

  return true;
}

 
//
// WriteTopNavigation()
//
// This function creates the links and menus for the top navigation. 
// Currently, four menus are created: Teams, Schedule, Statistics, and Standings.
//

function WriteTopNavigation()
{
  document.write(  
  "<!-- Display the top navigation -->\n" +
  "<!-- Print top navigation-->\n" +
  "<table border=0 cellpadding=0 cellspacing=0>\n" +
  "  <tr>\n" +
  "    <td width=625 valign=center align=right nowrap>\n" +
  "       <a href='#' style='color: #2c3687' onmouseover=\"MM_showHideLayers('tmTeams', '', 'show', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\" \n" +
  "        onmouseout=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\">Teams</a>\n" + 
  "\n" +
  "       <!-- Top Navigation Teams Menu -->\n" +
  "       <div id='tmTeams'  style='position:absolute; z-index:100; left: 255px; top: 159px;' class='subnav' onmouseover=\"MM_showHideLayers('tmTeams', '', 'show', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\"\n" +


  "        onmouseout=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\" style='z-index: 0'>\n" +
  "         <p>Men's Teams</p>\n" +
  "         <ul>\n" +
  "           <li><a href='http://www.snc.edu/athletics/hockey/'>St. Norbert</a></li>\n" +
  "           <li><a href='http://www.csssaints.com/index.asp?path=mhockey&tab=mens'>St. Scholastica</a></li>\n" +
  "           <li><a href='http://www.uwec.edu/athletics/mhky/0809/index.htm'>UW-Eau Claire</a></li>\n" +
  "           <li><a href='http://www.uwrf.edu/sports/menhockey.home.php'>UW-River Falls</a></li>\n" +
  "           <li><a href='http://athletics.uwsp.edu/index.asp?path=mhockey&tab=menssports'>UW-Stevens Point</a></li>\n" +
  "           <li><a href='http://www.uwstout.edu/athletics/hockey/'>UW-Stout</a></li>\n" +
  "           <li><a href='http://www.uwsuper.edu/athletics/mens/hockey/08-09/'>UW-Superior</a></li>\n" +
  "         </ul>\n" +
  "         <p>Women's Teams</p>\n" +
  "         <ul>\n" +
  "           <li><a href='http://adrianbulldogs.cstv.com/sports/w-hockey/adri-w-hockey-body.html'>Adrian</a></li>\n" +
  "           <li><a href='http://athletics.cuw.edu/sports/whockey/index.cfm'>Concordia</a></li>\n" +
  "           <li><a href='http://www.finlandia.edu/Department/Athletics/womhockey.html'>Finlandia</a></li>\n" +
  "           <li><a href='http://www.lakeforest.edu/foresters/whockey/~index.htm'>Lake Forest</a></li>\n" +
  "           <li><a href='http://www.mariancollege.edu/interior.aspx?id=10204'>Marian</a></li>\n" +
  "           <li><a href='http://www.snc.edu/athletics/hockeyw/'>St. Norbert</a></li>\n" +
  "           <li><a href='http://www.uwec.edu/athletics/whky/0809/index.htm'>UW-Eau Claire</a></li>\n" +
  "           <li><a href='http://www.uwrf.edu/sports/womenhockey.home.php'>UW-River Falls</a></li>\n" +
  "           <li><a href='http://athletics.uwsp.edu/index.asp?path=whockey&tab=womenssports'>UW-Stevens Point</a></li>\n" +
  "           <li><a href='http://www.uwsuper.edu/athletics/womens/hockey/08-09/'>UW-Superior</a></li>\n" +
  "         </ul>\n" +
  "       </div>\n" +
  "       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n" +
  "      <a href='#' style='color: #2c3687' onmouseover=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'show', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\" \n" +
  "        onmouseout=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\">Schedule/Results</a>\n" +
  "\n" +
  "       <!-- Top Navigation Schedule Menu -->\n" +
  "       <div id='tmSchedule' style='position:absolute; z-index:100; left: 323px; top: 159px;' class='subnav' onmouseover=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'show', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\"\n" +
  "        onmouseout=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\" style='z-index: 0'>\n" +
  "         <ul>\n" +
  "           <li><a href='" + msked + "'>Men's</a></li>\n" +
  "           <li><a href='" + wsked + "'>Women's</a></li>\n" +
  "         </ul>\n" +
  "      </div>\n" +

  "      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n" +
  "\n" +
  "      <a href='#' style='color: #2c3687' onmouseover=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'show', 'tmStandings', '', 'hide')\" \n" +

  "       onmouseout=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\">Statistics</a>\n" +
  "\n" +
  "       <!-- Top Navigation Statistics Menu -->\n" +
  "       <div id='tmStats' style='position:absolute; z-index:100; left: 451px; top: 159px;' class='subnav' onmouseover=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'show', 'tmStandings', '', 'hide')\"\n" +
  "        onmouseout=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\" style='z-index: 0'>\n" +
  "         <ul>\n" +
  "           <li><a href='http://www.nchahockey.org/0910/mstats/confstat.htm'>Men's</a></li>\n" +
  "           <li><a href='http://www.nchahockey.org/0910/wstats/confstat.htm'>Women's</a></li>\n" +
  "         </ul>\n" +
  "      </div>\n" +
  "      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n" +
  "\n" +
  "      <a href='#' style='color: #2c3687' onmouseover=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'show')\" \n" +
  "       onmouseout=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\">Standings</a>\n" +
  "\n" +
  "       <!-- Top Navigation Standings Menu -->\n" +
  "       <div id='tmStandings' style='position:absolute; z-index:100; left: 536px; top: 159px;'  class='subnav' onmouseover=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'show')\"\n" +
  "        onmouseout=\"MM_showHideLayers('tmTeams', '', 'hide', 'tmSchedule', '', 'hide', 'tmStats', '', 'hide', 'tmStandings', '', 'hide')\" style='z-index: 0'>\n" +
  "         <ul>\n" +
  "           <li><a href='" + mstandings + "'>Men's</a></li>\n" +
  "           <li><a href='" + wstandings + "'>Women's</a></li>\n" +
  "         </ul>\n" +
  "      </div>\n" +
  "      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n" +
  "    </td>\n" +
  "    <td width=185 align=right nowrap>\n" +

  "      <img src='http://www.nchahockey.org/bannermiddle.gif'><br>\n" +
  "    </td>\n" +
  "  </tr>\n" +
  "</table>\n"
  );

  return true;
}


//
// WriteLeftNavigation()
//
// This function creates the links and menus for the left navigation. 

// Currently, five menus are created:  NCHA News, Team Info, Records, National Polls, and NCAA Statistics
//

function WriteLeftNavigation()
{
  document.write(
  "<br><br><br>\n" +
  "      <!-- NCHA Home Link -->\n" +
  "      <a href='http://www.nchahockey.org/index.html' style='color: #e7c507'>NCHA Home&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br><br>\n" +
  "\n" +
  "      <!-- NCHA News Menu -->\n" +
  "      <a href='#' style='color: #e7c507' onmouseover=\"MM_showHideLayers('mNews', '', 'show', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\" \n" +
  "       onmouseout=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\">NCHA News</a>\n" +
  "\n" +
  "       <div id='mNews' style='position:absolute; z-index:100; left: 127px; top: 277px;' class='subnav' onmouseover=\"MM_showHideLayers('mNews', '', 'show', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\"\n" +
  "        onmouseout=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\" style='z-index: 0'>\n" +
  "         <ul>\n" +
  "           <li><a href='0910/headlines0910.html" + "'>Headlines</a></li>\n" +
  "           <li><a href='0910/releases0910.html" + "'>Weekly Releases</a></li>\n" +
  "         </ul>\n" +
  "      </div>\n" +
  "      <img src='arrow.jpg' border=0>&nbsp;&nbsp;<br>\n" +
  "\n" +
  "      <!-- Team Info Menu -->\n" +
  "      <a href='#' style='color: #e7c507' onmouseover=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'show', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\" \n" +
  "       onmouseout=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\">Team Info</a>\n" +
  "\n" +
  "       <div id='mTeams' style='position:absolute; z-index:100; left: 127px; top: 270px;' class='subnav' onmouseover=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'show', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\"\n" +
  "        onmouseout=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\" style='z-index: 0'>\n" +
  "         <p>Men's Teams</p>\n" +
  "         <ul>\n" +
  "           <li><a href='teams/msnc.htm'>St. Norbert</a></li>\n" +
  "           <li><a href='teams/mcss.htm'>St. Scholastica</a></li>\n" +
  "           <li><a href='teams/mec.htm'>UW-Eau Claire</a></li>\n" +
  "           <li><a href='teams/mrf.htm'>UW-River Falls</a></li>\n" +
  "           <li><a href='teams/msp.htm'>UW-Stevens Point</a></li>\n" +
  "           <li><a href='teams/mstout.htm'>UW-Stout</a></li>\n" +
  "           <li><a href='teams/msup.htm'>UW-Superior</a></li>\n" +
  "         </ul>\n" +
  "         <p>Women's Teams</p>\n" +
  "         <ul>\n" +
  " <li><a href='teams/wadrian.html'>Adrian</a></li>\n" +            
  "           <li><a href='teams/wcuw.htm'>Concordia</a></li>\n" +
  "           <li><a href='teams/wfinlandia.htm'>Finlandia</a></li>\n" +
  "           <li><a href='teams/wlfc.htm'>Lake Forest</a></li>\n" +
  " <li><a href='teams/wmarian.html'>Marian</a></li>\n" +
  "           <li><a href='teams/wec.htm'>UW-Eau Claire</a></li>\n" +
  "           <li><a href='teams/wrf.htm'>UW-River Falls</a></li>\n" +
  "           <li><a href='teams/wsp.htm'>UW-Stevens Point</a></li>\n" +
  "           <li><a href='teams/wsup.htm'>UW-Superior</a></li>\n" +
  "         </ul>\n" +
  "      </div>\n" +
  "      <img src='arrow.jpg' border=0>&nbsp;&nbsp;<br><br>\n" +
  "\n" +

  "      <!-- Schedule/Results Link -->\n" +
  "      <a href='sked.htm' style='color: #e7c507'>Schedule/Results&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br>\n" +
  "\n" +
  "      <!-- Statistics Link -->\n" +
  "      <a href='stats.htm' style='color: #e7c507'>Statistics&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br>\n" +
  "\n" +
  "\n" +
  "      <!-- Standings Link -->\n" +
  "      <a href='http://www.nchahockey.org/standings.htm' style='color: #e7c507'>Standings&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br><br>\n" +
  "\n" +
  "      <!-- The NCHA Link -->\n" +
  "      <a href='nchahistory.htm' style='color: #e7c507'>The NCHA&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br>\n" +
  "\n" +
  "      <!-- League Officials Link -->\n" +
  "      <a href='http://www.nchahockey.org/leagueofficials.htm' style='color: #e7c507'>League Officials&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br>\n" +
  "\n" +
  "      <!-- NCHA Directory Link -->\n" +
  "      <a href='nchadirectory.htm' style='color: #e7c507'>NCHA Directory&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br>\n" +
  "\n" +
  "      <!-- SID Information Link -->\n" +
  "      <a href='sidinfo.htm' style='color: #e7c507'>SID Information&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br><br>\n" +
  "\n" +
  "      <!-- Season Archives Link -->\n" +
  "      <a href='archives.htm' style='color: #e7c507'>Season Archives&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br>\n" +
  "\n" +
  "      <!-- Records Menu -->\n" +
  "      <a href='#' style='color: #e7c507' onmouseover=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'show', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\" \n" +
  "       onmouseout=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\">Records</a>\n" +
  "\n" +
  "       <div id='mRecords' style='position:absolute; z-index:120; left: 127px; top: 472px;' class='subnav' onmouseover=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'show', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\"\n" +
  "        onmouseout=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\" style='z-index: 0'>\n" +
  "         <ul>\n" +
  "           <li><a href='mrecords.htm'>Men's</a></li>\n" +
  "           <li><a href='wrecords.htm'>Women's</a></li>\n" +
  "         </ul>\n" +
  "      </div>\n" +
  "      <img src='arrow.jpg' border=0>&nbsp;&nbsp;<br><br>\n" +
  "\n" +
  "      <!-- Polls Menu -->\n" +
  "      <a href='#' style='color: #e7c507' onmouseover=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'show', 'mNCAAStats', '', 'hide')\" \n" +
  "       onmouseout=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\">National Polls</a>\n" +
  "\n" +
  "       <div id='mPolls' style='position:absolute; z-index:100; left: 127px; top: 474px;' class='subnav' onmouseover=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'show', 'mNCAAStats', '', 'hide')\"\n" +
  "        onmouseout=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\" style='z-index: 0'>\n" +
  "         <p>Men's Polls</p>\n" +
  "         <ul>\n" +
  "           <li><a href='http://www.ncaasports.com/icehockey/mens/polls/diviii'>NCAA Regional Rankings</a></li>\n" +
  "           <li><a href='http://www.uscho.com/rankings/'>USCHO Division I/III</a></li>\n" +
  "         </ul>\n" +
  "         <p>Women's Polls</p>\n" +
  "         <ul>\n" +

  "           <li><a href='http://www.ncaasports.com/icehockey/womens/polls/diviii'>NCAA Regional Rankings</a></li>\n" +
  "           <li><a href='http://www.uscho.com/rankings/'>USCHO Division I/III</a></li>\n" +
  "         </ul>\n" +
  "      </div>\n" +
  "      <img src='arrow.jpg' border=0>&nbsp;&nbsp;<br>\n" +
  "\n" +
  "      <!-- NCAA Statistics Menu -->\n" +
  "      <a href='#' style='color: #e7c507' onmouseover=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'show')\" \n" +
  "       onmouseout=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\">NCAA Statistics</a>\n" +
  "\n" +
  "       <div id='mNCAAStats' style='position:absolute; z-index:100; left: 127px; top: 516px;' class='subnav' onmouseover=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'show')\"\n" +
  "        onmouseout=\"MM_showHideLayers('mNews', '', 'hide', 'mTeams', '', 'hide', 'mRecords', '', 'hide', 'mPolls', '', 'hide', 'mNCAAStats', '', 'hide')\" style='z-index: 0'>\n" +
  "         <ul>\n" +
  "           <li><a href='http://www.collegehockeystats.net/'>Men's</a></li>\n" +
  "           <li><a href='http://www.collegehockeystats.net/'>Women's</a></li>\n" +
  "         </ul>\n" +
  "      </div>\n" +
  "      <img src='arrow.jpg' border=0>&nbsp;&nbsp;<br>\n" +
  "\n" +
  "      <!-- Other Hockey Sites Link -->\n" +
  "      <a href='http://www.nchahockey.org/links.htm' style='color: #e7c507'>Other Hockey Sites&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br><br>\n" +
  "      <!-- Site Map Link -->\n" +
  "      <a href='http://www.nchahockey.org/sitemap.htm' style='color: #e7c507'>Site Map&nbsp;<img src='block.jpg' border=0>&nbsp;&nbsp;</a><br>\n" +
  "\n" +
  "<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>\n"

  );

  return true;
}


//
// WriteFooter()
//
// This function creates the mini-sitemap and the site's copyright information.
//

function WriteFooter()
{
  document.write(
  "<br>\n" +
  "<center>\n" +

  "<hr color='#2c3687' width=420 size=0.5>\n" +
  "<!-- Write the mini sitemap -->\n" +
  "<a href='http://www.nchahockey.org' style='font-size: 10px'>NCHA Home</a> &nbsp;| &nbsp;\n" +
  "<a href='sitemap.htm' style='font-size: 10px'>Site Map</a> &nbsp;| &nbsp;\n" +
  "<a href='" + headlines + "' style='font-size: 10px'>Headlines</a> &nbsp;| &nbsp;\n" +
  "<a href='" + releases + "' style='font-size: 10px'>Weekly Releases</a><br>\n" +
  "<a href='sked.htm' style='font-size: 10px'>Schedule/Results</a> &nbsp;| &nbsp;\n" +

  "<a href='stats.htm' style='font-size: 10px'>Statistics</a> &nbsp;| &nbsp;\n" +
  "<a href='standings.htm' style='font-size: 10px'>Standings</a>\n" +
  "<br><br>\n" +
  "\n" +  
  "<!-- Write the copyright info -->\n" +
  "  <font size=2 class=copyright>\n" +
  "  &copy;Copyright 2008 Northern Collegiate Hockey Association. All rights reserved.<br>\n" +
  "  Submit comments about this site to \n" +
  "  <a href='mailto:brianwmonahan@yahoo.com'>NCHA Sports Information Director</a>.<br>\n" +
  "  </font>\n" +
  "</center>\n" +
  "<br><br>\n"
  );

  return true;
}




//
// The remainder of this file contains functions to display and hide the website's menus.
// These functions were taken from http://www.uwstout.edu with the permission of the site's webmaster.
//

function MM_reloadPage(init) 
{  
  // Reloads the window if Nav4 resized
  if (init == true) with (navigator) 
  {
    if ((appName == "Netscape") && (parseInt(appVersion) == 4)) 
    {
      document.MM_pgW = innerWidth; 
      document.MM_pgH = innerHeight; 
      onresize = MM_reloadPage; 
    }
  }
  else if (innerWidth != document.MM_pgW || innerHeight != document.MM_pgH) 
  {
    location.reload();
  }
}

MM_reloadPage(true);
// -->

function MM_findObj(n, d) 
{ 
  // V4.0
  var p, i, x; 
 

  if (!d) 
  {
    d = document; 

  }

  if ((p = n.indexOf("?")) > 0 && parent.frames.length) 
  {
    d = parent.frames[n.substring(p+1)].document; 
    n = n.substring(0,p);
  }
  
  if (!(x = d[n]) && d.all) 
  {
    x = d.all[n]; 
  }

  for (i = 0; !x && i < d.forms.length; i++) 
  {
    x = d.forms[i][n];
  }

  for (i = 0; !x && d.layers && i < d.layers.length; i++) 
  {
    x = MM_findObj(n,d.layers[i].document);
  }

  if (!x && document.getElementById) 
  {
    x = document.getElementById(n); 
  }

  return x;
}

function MM_showHideLayers() 
{ 
  // V3.0
  var i, p, v, obj, args = MM_showHideLayers.arguments;

  for (i = 0; i < (args.length - 2); i += 3) 
  {
    if ((obj = MM_findObj(args[i])) != null) 
    { 
       v = args[i+2];

       if (obj.style) 
       { 
         obj = obj.style; 
         v = (v == 'show') ? 'visible' : (v = 'hide') ? 'hidden':v; 
       }

       obj.visibility = v; 
    }
  }
}
