
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.open("text/html");
	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();" style="background-color:#ffffff;color:#000000">');

	printwindow.document.write('<table cellspacing="0" cellpadding="0" border="0">');
	printwindow.document.write('<tr>');
	printwindow.document.write('<td>');
	printwindow.document.write('<div id="printDiv" class="divHeight" style="color:#000000; width: 350px;">');
	printwindow.document.write('</div>');
	printwindow.document.write('</td>');
	printwindow.document.write('<td style="width: auto; vertical-align: bottom;">');


if (colorJS == 'flame') {
		printwindow.document.write('<div style="width: 260px;"><img src="/site/core/images/logo_flame_print.gif" width="260" height="71" hspace="0" vspace="0" border="0" alt=""/></div>'); 
} else {
	if (colorJS == 'home') {
			printwindow.document.write('<div style="width: 260px;"><img src="/site/core/images/logo_home_print.gif" width="260" height="80" hspace="0" vspace="0" border="0" alt=""/></div>'); 
	} else {
			printwindow.document.write('<div style="width: 260px;"><img src="/site/core/images/logo_green.gif" width="260" height="85" hspace="0" vspace="0" border="0" alt=""/></div>'); 
	}
}
	printwindow.document.write('</td>');


	printwindow.document.write('</tr>');
	printwindow.document.write('</table>');

	
	


if (colorJS == 'flame') {
	printwindow.document.write('<div class="printFooter"><img src="/site/core/images/orange.gif" width="610" height="10" hspace="0" vspace="0" border="0" alt=""/></div>');
} else {
	if (colorJS == 'home') {
		printwindow.document.write('<div class="printFooter"><img src="/site/core/images/brown.gif" width="610" height="10" hspace="0" vspace="0" border="0" alt=""/></div>');
	} else {
		printwindow.document.write('<div class="printFooter"><img src="/site/core/images/green.gif" width="610" height="10" hspace="0" vspace="0" border="0" alt=""/></div>');
	}
}


	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();
}