<!--//
		var AutoPrint = true; // Indien 'false' wordt de pagina niet automatisch uitgeprint 
				
				function PrintPagina(){ 
				if (document.getElementById != null){ 
				var html = '<html>\n<head>\n'; 
				html += '\n<link rel="stylesheet" type="text/css" href="<?php echo $bestPad; ?>/stylesheets/print.css" /></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)printWin.print();}}  
//-->
