var printwindow;
function printIt(contentId, contentId2) {
	contentTag = document.getElementById(contentId);
	if(document.getElementById(contentId2))
	{
	    contentTag2 = document.getElementById(contentId2);
	}
	printwindow = window.open("",null,"height=480,width=640,status=no,resizable=yes,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>');
	if(document.getElementById(contentId2))
	{
	    printwindow.document.write('<body onLoad="window.opener.printMove1();"');
	}
	else{
	    printwindow.document.write('<body onLoad="window.opener.printMove();">');
	}
	printwindow.document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0">');
	printwindow.document.write('</table>');
	if(document.getElementById(contentId2))
	{
		printwindow.document.write('<span style="font-size:14px;font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:bold;text-transform:uppercase;letter-spacing:1px;white-space:nowrap;">');
	    printwindow.document.write(printTitle);
	    printwindow.document.write('</span>');
	    printwindow.document.write('<table><tr><td><div id="printDiv1"  style="margin-top:5px;">');
	    printwindow.document.write('</div></td></tr>');
	    printwindow.document.write('<tr><td>');
	    printwindow.document.write('<div id="printDiv"  style="margin-top:5px;">');
	    printwindow.document.write('</div></td></tr></table>');
	}
	else{
	    printwindow.document.write('<span style="font-size:14px;font-family:Verdana, Arial, Helvetica, sans-serif; font-weight:bold;text-transform:uppercase;letter-spacing:1px;white-space:nowrap;margin-left:10px;">');
	    printwindow.document.write(printTitle);
	    printwindow.document.write('</span>');
	    printwindow.document.write('<div id="printDiv" style="margin-top:5px;margin-left:10px;margin-right:10px;">');
	    printwindow.document.write('</div>');
	}
	printwindow.document.write('</body>');
	printwindow.document.write('</html>');
	printwindow.document.close();
	return;
}

function printMove() {
	printwindow.document.getElementById('printDiv').innerHTML = contentTag.innerHTML;
	printwindow.focus();
	printwindow.print();
}

function printMove1() {
	printwindow.document.getElementById('printDiv1').innerHTML = contentTag2.innerHTML;
	printwindow.document.getElementById('printDiv').innerHTML = contentTag.innerHTML;
	printwindow.focus();
	printwindow.print();
}
