<!--- Functions.js -->
function printNavigation()
{
   document.write(
    '<br><br><img src="images/logo2.gif" border=0 alt="Lightning" width="160" height="120"><br><br>' + 
    '<p><a href="index.html">Lightning Home</a><br>' +
    '<a href="sched.htm">Schedule/Results</a><br>' +
    '<a href="stats.htm">Statistics</a><br>' +
    '<a href="roster.htm">Roster</a><br>' +
    '<a href="profiles.htm">Player Profiles</a><br>' +
    '<a href="photos.htm">Photo Gallery</a><br>' +
    '<a href="archives.htm">Archives</a></p>' +
    '<br><br>' +
    
    '<p><a href="http://www.rinkfinder.com">Directions to <br>Local Arenas</a></p>' +
    '<br><br>' +
    
    '<p><a href="links.htm">Links</a><br>'
   );

   return true;
} // end printNavigation()

function printFooter()
{
   document.write(
    '<br>' +
    '<center>' +
    '<a href="http://www.womenshockeymn.org/" target="_blank"><img src="images/wham.gif" alt="WHAM Official Web Site" border="0"></a>'+
    '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'+
    '<a href="http://www.usahockey.com/" target="_blank"><img src="images/usahockey.gif" alt="USA Hockey Official Web Site" border="0"></a>' +
    '<br><br>' +
    '<p class="small"><b>Last updated 10/19/2006</b></p>' +
    '<p class="small">&copy;Copyright Minnesota Lightning 2000 - 2006</p>' +  
    '<p class="small">Submit comments about the team to <a href="mailto:scanlonam6@yahoo.com">scanlonam6@yahoo.com</a>.<br>' +
    ' Submit comments about this site to <a href="mailto:khaglund@frontiernet.net">khaglund@frontiernet.net</a>.' +
    '</p></center>'
   );

   return true;
} // end printFooter