var printwindow;
function printIt(contentId) {
	contentTag = document.getElementById(contentId);
	printwindow = window.open("",null,"height=480,width=640,status=no,resizable=no,scrollbars=yes,toolbar=yes,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:604px;" border="0" cellpadding="0" cellspacing="0">');
	printwindow.document.write('<tr class="header2"><td><img src="/site/images/KBM_logo_prnt.gif" height="50"  alt="" hspace="0" vspace="0" style="margin-top:0px;padding:0;"/></td></tr>');
	//printwindow.document.write('<tr><td style="height: 30px;">');
	//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:604px;" border="0" cellpadding="0" cellspacing="0">');
	printwindow.document.write('<tr class="footer"><td><table style="font:normal 11px Arial;"><tr><td>&#169;&#160;2007&#160;KBM&#160;Affilips&#160;&#160;|&#160;&#160;</td><td width="333px" style="text-align:center">Part of the <span style="font-weight:bold">Roba Holding</span> group</td></tr></table></td></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();
}