var printwindow;
function printIt(contentId) {
	contentTag = document.getElementById(contentId);
	printwindow = window.open("",null,"height=480,width=640,status=no,resizable=yes,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('<link rel="stylesheet" type="text/css" href="/site/css/content_styles.css"/>');
	printwindow.document.write('<link rel="stylesheet" type="text/css" href="/site/css/print.css"/>');
	printwindow.document.write('<link rel="stylesheet" type="text/css" href="/site/css/site.css"/>');
	printwindow.document.write('</head>');
	printwindow.document.write('<body onLoad="window.opener.printMove();" style="color: #000000; margin-left: 15px;">');
	printwindow.document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0" class="top">');
	printwindow.document.write('<tr><td>');
	printwindow.document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0">');
	printwindow.document.write('<tr><td><img src="/site/images/logo_print.gif" width="180" height="220" alt="Logo" class="noBorder" align="absmiddle"></td>');
	printwindow.document.write('<td class="top"><table cellpading="0" cellspasing="0" border="0"><tr><td><img src="/site/images/bg_print_title.gif" width="460" height="63"</td></tr><tr><td class="print_title middle">');
	printwindow.document.write(printTitle);
	printwindow.document.write('</td></td></tr></table></tr></table>');
	printwindow.document.write('</td></tr>');
	printwindow.document.write('<tr><td>');
	printwindow.document.write('<div id="printDiv" class="contentStyle" style="padding-top: 30px; padding-bottom: 10px; width: 630px;">');
	printwindow.document.write('</div>');
	printwindow.document.write(prnPagePath);
	printwindow.document.write('</td></tr>');
	printwindow.document.write('<tr class="bottom"><td style="border-top: 1px solid #000000;">');
	printwindow.document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" style="padding-top: 10px;">');
	printwindow.document.write('<tr><td class="footer">&#169; VDS van der Sluis Stalen Meubelen 2005 </td>');
	printwindow.document.write('<td class="right footer"><a href="http://www.negeso.com" target="_blank" class="footer">');
	printwindow.document.write('<img id="negeso_logo" src="/site/images/negeso_logo.gif" alt="Negeso" class="noBorder" align="absmiddle" style="display: inline-block;"/>&#160;Powered by Negeso &#174;');
	printwindow.document.write('</a></td></tr>');
	printwindow.document.write('</table>');
	printwindow.document.write('</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();
}