function print_section( sID ) {
  var oPrint = document.getElementById(sID);
  var sHTML = oPrint.innerHTML;
  var oWin = window.open('', 'printwindow', 'menubar=no,location=no,resizable=no,scrollbars=yes,status=no,width=800,height=1000');

  if(oWin) {
    oWin.document.open();
    oWin.document.write('<head><link rel="stylesheet" href="css/default.css" type="text/css" /></head>');  
    oWin.document.write('<h1 id="vz-logo" style="padding: 25px 0 25px 15px">');
    oWin.document.write('<a href="/" title="Voetbalzaken.nl - altijd doeltreffend"><img src="images/logo_voetbalzaken.gif" width="208" height="32" alt="Voetbalzaken.nl - altijd doeltreffend" /><span>Voetbalzaken.nl - altijd doeltreffend</span></a>');
    oWin.document.write('</h1>');
    oWin.document.write('<div class="box-3col-grad" style="text-align:left;">');
    oWin.document.write('<div class="box-3col-body">');
    oWin.document.write('<div class="box-3col-grad-bottom">');
    oWin.document.write(sHTML);
    oWin.document.write('<p style="margin-left:10px;"><img src="images/bg_handtekening.jpg"></p>');
    oWin.document.write('<p style="margin-left:10px;">Handtekening</p>');
    oWin.document.write('<p>&nbsp;</p>');
    oWin.document.write('<center style="margin-bottom:40px;"><h1><b>Voor Belgi&euml;, fax uw reservering naar +32(0) 3 218 20 20</b></h1></center>');
    oWin.document.write('<center style="margin-bottom:40px;"><h1><b>Voor Nederland, fax uw reservering naar +31(0) 226 45 08 01</b></h1></center>');  
    oWin.document.write('</div></div></div>');
    oWin.document.close(); 
    oWin.print();
    oWin.close();
  }
  else {
    // alert('print window blocked!')
  }

}

