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(document.getElementById('printTitle').firstChild.nodeValue);
	printwindow.document.write('</title>');
	printwindow.document.write(cssLinks);	
	printwindow.document.write('</head>');
	printwindow.document.write('<body>');
	printwindow.document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0">');
//	printwindow.document.write('<tr><td style="height: 30px;"><h1>');
//	printwindow.document.write(document.getElementById('prnPagePath').firstChild.nodeValue);
//	printwindow.document.write('</h1></td></tr>');
	printwindow.document.write('</table>');
	printwindow.document.write('<div id="printDiv" style="text-align: left;">');
	printwindow.document.write('</div>');
	printwindow.document.write('<script>window.opener.printMove();</script>');
	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();
}