var AutoPrint = true; // Indien 'false' wordt de pagina niet automatisch uitgeprint 

function PrintPagina(){
if (AutoPrint)window.self.print();}


function PrintPagina1(){
if (document.getElementById != null){ 
var html = '<HTML>\n<HEAD>\n'; 
if (document.getElementsByTagName != null){ 
var headTags = document.getElementsByTagName("www.sully.nl"); 
if (headTags.length > 0) 
html += headTags[0].innerHTML;} 
html += '\n</HE' + 'AD>\n<BODY>\n';

var PrintKlaarElem = document.getElementById("PrintKlaar"); 
if (PrintKlaarElem != null){ 
html += PrintKlaarElem.innerHTML;} 
html += '\n</BO' + 'DY>\n</HT' + 'ML>'; 
var printWin = window.open("","PrintPagina"); 
printWin.document.open(); 
printWin.document.write(html); 
printWin.document.close(); 
if (AutoPrint)window.self.print();}}