/*schrijft algemene navigatie van iedere pagina */
function PrintHeaderMenuOld()
{
//document.write('<ul id="navlist">');
document.write('<li><a href="../index.html">Home</a></li>');
document.write('<li><a href="wiezijnwe.htm">De Club</a></li>');
document.write('<li><a href="kalender.htm">Kalender</a></li>');
document.write('<li><a href="wistudat.htm">Nuttige info</a></li>');
document.write('<li><a href="verslagen2011.htm">Verslagen</a></li>');
document.write('<li><a href="forumlogin.php">Forum</a></li>');
//document.write('</ul>');
}

function PrintHeaderMenu()
{
document.write('<a href="../index.html">Home</a>');
document.write('<a href="wiezijnwe.htm">De Club</a>');
document.write('<a href="kalender.htm">Kalender</a>');
document.write('<a href="wistudat.htm">Nuttige info</a>');
document.write('<a href="verslagen2011.htm">Verslagen</a>');
document.write('<a href="sponsors.htm">Sponsors</a>');
document.write('<a href="forumlogin.php">Forum</a>');
}


/*schrijft footer van iedere pagina */
function PrintFooter()
{

var tekst= "Copyright © 2005 - 2011 Blosom Wielertoeristen. Alle rechten voorbehouden<br> Voorkeur: IE 1024x768 - Voor suggesties of problemen bij het gebruik van deze site, contacteer de <a href='mailto:webmaster@wtcblosommeerbeek.be'>webmaster</a>";
document.write(tekst);
}


/*popup window*/
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

/*popup window*/
function popUpWindowScroll(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

/*open disclaimer window*/
function openDisclaimer()
{
 window.open('disclaimer.htm','popUpDisclaimer','toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=550,height=500,left=200,top=40,screenX=250,screenY=40');
}
