function print_page() { 
   l_window_properties = "toolbar=yes, location=no, directories=yes, menubar=yes, scrollbars=yes, width=750, height=600, left=100, top=25"; 
   l_title = document.getElementById('print_title').innerHTML; 
 
   l_old_content = document.getElementById('print_content_body').innerHTML; 
   re = /document.write[^;]+[;]/g
   l_content = l_old_content.replace(re,"");

   l_print_window= window.open("", "", l_window_properties); 
   l_doc_html= '<html><head><title>Print Preview - Giesbers-Wijchen Bouw BV</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><link href="style/style.css" rel="stylesheet" type="text/css"><script language="JavaScript1.2" type="text/javascript">function auto_print () {   if (window.print) {     l_agree = confirm("Klik op OK om deze pagina automatisch te printen.");     if (l_agree) {        window.print();     }   }}</script></head><body onLoad="auto_print();"><table width="600" border="0" align="center" cellpadding="0" cellspacing="0">  <tr>    <td> <br>      <br>      <img src="images/logo_content_GW.gif" alt="home" border="0"> <br>      <br>    </td>  </tr>  <tr>    <td class="title">' + l_title + ' </td>  </tr>  <tr>    <td class="content">      <hr>      <br>      ' + l_content + ' </td>  </tr>  <tr>    <td>&nbsp;</td>  </tr>  <tr>    <td valign=bottom class="footer_adress">      <hr>      Giesbers-Wijchen Bouw BV - Postbus 64 - 6600 AB - Wijchen<br>      Telefoon (0031) +24 6492811 - Telefax (0031) +24 6422545 - <a href="mailto:info@giesberswijchen.nl">info@giesberswijchen.nl</a><br>      <br>    </td>  </tr></table></body></html>';

   l_print_window.document.open(); 
   l_print_window.document.write(l_doc_html);
   l_print_window.document.close(); 
   l_print_window.focus(); 
}

