function doPrint() {
	inhoud = "";
	if (document.getElementById("intro")) inhoud += document.getElementById("intro").innerHTML;
	if (document.getElementById("kolom2")) inhoud += document.getElementById("kolom2").innerHTML;
	if (document.getElementById("kolom3")) inhoud += document.getElementById("kolom3").innerHTML;
	inhoud += "<br><center><a href='javascript: window.print()'>Pagina printen</a> &nbsp;&nbsp; <a href='javascript: window.close()'>Venster sluiten</a></center>";
	text = "<html><head><title>Printvriendelijke versie</title><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>";
text += "<LINK media=screen href='../css/print.css' rel=stylesheet>";
text += "</head><body bgcolor=#FFFFFF LINK=#000000 VLINK=#000000 ALINK=#000000 TEXT=#000000><table border=0 align=center width=600><tr><td><img src='../img/logo.gif'><p>&nbsp;</p></td></tr><tr><td>"+inhoud+"</td></tr></table></body></html>";
	printWin = window.open('','','width=700,height=600,scrollbars=yes,resizable=yes,titlebar=0');
	printWin.document.write(text);
	printWin.document.close();
	printWin.print();
}

