var printwindow;
var copyRightText = new Array();
var titleText;
var titleBgColor;
var titleColor;
function printIt(contentId, lang) {
	lang='ru';
//	copyRightText["ru"] = 'Консалтинговая компания "КОРТЕКС"<br>desyatka.com.ua';
//Консалтинговая компания "КОРТЕКС"
	
	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(titleText);
	printwindow.document.write('</title>');
	printwindow.document.write('<style>');
	printwindow.document.write("#titleTd {" + titleStyle +"}");
	printwindow.document.write('</style>');
	printwindow.document.write('<link rel="stylesheet" type="text/css" href="/img_0/print.css">');
	printwindow.document.write('<link rel="stylesheet" type="text/css" media="print" href="/img_0/printm.css">');
	printwindow.document.write('</head>');
	printwindow.document.write('<body onLoad="window.focus(); window.print();">');
	printwindow.document.write('<table height="31" border="0" cellpadding="0" cellspacing="0" class="top1">');
	printwindow.document.write('<tr>');
	printwindow.document.write('<td id="titleTd" class="title" height="31">');
	printwindow.document.write(copyRightText[lang]);
	printwindow.document.write('</td>');
	printwindow.document.write('</tr>');
	printwindow.document.write('</table>');
	printwindow.document.write('<div id="printDiv" class="printDiv">');
	printwindow.document.write('</div>');
	printwindow.document.write('</body>');
	printwindow.document.write('</html>');
	printwindow.document.close();
	printwindow.document.getElementById('printDiv').innerHTML = contentTag.innerHTML;
	return true;
}