function printen(){	var a = window.open('','','width=500,height=500');	a.document.open("text/html");	a.document.write('<html><head>');	a.document.write('<title>www.arbo-advies.nl</title>');	a.document.write('<link rel="stylesheet" href="style/js.css" />');	a.document.write('</head><body>');	a.document.write(document.getElementById('printdezediv').innerHTML);	a.document.write('</body></html>');	a.document.close();	a.print();	a.window.close();}
