<!--
function ShowPrint()
{
	var scroll = "yes";
	var top = 0, left = 0;
	var width = screen.width-440;
	var height = screen.height - 200;
	top = Math.floor((screen.height - height) / 2 - 14);
	left = Math.floor((screen.width - width) / 2 - 15);
	var wnd = window.open("","","scrollbars="+scroll+",resizable=yes,width="+width+",height="+height+",left="+left+",top="+top);
	
	var text = document.getElementById('printarea').innerHTML;
	wnd.document.write('<html>\n	<head>\n');
	wnd.document.write('		<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />\n');
	wnd.document.write('		<link rel="stylesheet" href="/styles/altay-rcc.css" type="text/css" />\n');
	wnd.document.write('		<title>Версия для печати</title>\n	</head>\n');
	wnd.document.write('	<body style="margin:0px; padding:0px;">\n');
	wnd.document.write('		<table width="100%" border="0" cellspacing = "5">\n');
	wnd.document.write('		<tr>\n');
	wnd.document.write('		<td align="right"><a class="print" href="javascript:print();">распечатать</a></td>\n');
	wnd.document.write('		</tr>\n');
	wnd.document.write('		<tr>\n');
	wnd.document.write('		<td>&nbsp;</td>\n');
	wnd.document.write('		</tr>\n');
	wnd.document.write('		<tr>\n');
	wnd.document.write('		<td>' + text + '</td>');
	wnd.document.write('		</tr>\n');
	wnd.document.write('		</table>\n');
	wnd.document.write('	</body>\n');
	wnd.document.write('</html>\n');
	wnd.document.close();
}
-->
