<!--- Functions.js -->
function printNavigation()
{
   document.write(
    '<br><br><br>' +
    '<img src="mwshl.jpg"><br><br>' +
    '<a href="index.html" text-decoration=none>MWSHL Home</a><br>' +
    '<a href="faq.html">FAQ</a><br>' +
    '<a href="registration.html">Registration</a><br>' +
    '<br>' +
    '<a href="sched.html">Schedule/Results</a><br>' +
    '<a href="standings.html">Standings</a><br>' +
    '<a href="roster.html">Team Rosters</a><br>' +
    '<br>' +
    '<a href="clinics.html">Skills Clinics</a><br>' +
    '<br>' +
    '<a href="directions.html">League Arena</a><br>' +
    '<a href="contact.html">Contact Us</a><br>' +
    '</font>'
   );

   return true;
} // end printNavigation()

function printFooter()
{
   document.write(
    '<br><br>' + 
    '<font size=2 class=copyright>Last updated October 27, 2009<br>' +
    '&copy;Copyright Minnesota Women\'s Summer Hockey League 2002 - 2009<br>' +  
    'All rights reserved.<br><br>' +
    'Submit comments about this site to ' +
    '<a href="mailto:steinera19@yahoo.com" style="color: rgb(0, 93, 150)">mwshlhockey@yahoo.com</a><br>' +
    '</font><br>'
   );

   return true;
} // end printFooter