var printwindow;
function printIt(contentId) {
	contentTag = document.getElementById(contentId);
	printwindow = window.open("",null,"height=480,width=687,status=no,resizable=no,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,left=" + (screen.availWidth-640)/2 + ",top=" + (screen.availHeight-480)/2);
	printwindow.document.write('<html>');
	printwindow.document.write('<head>');
	printwindow.document.write('<title>');
	printwindow.document.write(printTitle);
	printwindow.document.write('</title>');
	printwindow.document.write(cssLinks);	
	printwindow.document.write('</head>');
	printwindow.document.write('<body onLoad="window.opener.printMove();">');
	printwindow.document.write('<table style="width:650px;" border="0" cellpadding="0" cellspacing="0">');
	printwindow.document.write('<tr class="frontpageContentTitle"><td>WELKOM BIJ DE<br />FRIEDRICH WEGENER STICHTING</td></tr>');
	printwindow.document.write('<tr><td style="height: 30px; color:#2d4d9d; font-weight:bold !important;">');
	printwindow.document.write(prnPagePath);
	printwindow.document.write('</td></tr>');
	printwindow.document.write('</table>');
	printwindow.document.write('<div id="printDiv">');
	printwindow.document.write('</div>');
	printwindow.document.write('<table style="width:650px;" border="0" cellpadding="0" cellspacing="0">');
	printwindow.document.write('<tr><td><table class="footer"><tr><td>&#169;&#160;Friederich Wegener Stichting 2007</td></tr></table></tr>');
	printwindow.document.write('</table>');
	printwindow.document.write('</body>');
	printwindow.document.write('</html>');
	printwindow.document.close();
	return true;
}

function printMove() {
	printwindow.document.getElementById('printDiv').innerHTML = contentTag.innerHTML;
	printwindow.focus();
	printwindow.print();
}