function printMe() {

	var d = document.getElementById('printMe');
	if (d==null) return false;

	var w =  window.open('','printme','width=700,height=600,toolbar=0,directories=0,menubar=0,status=0,resizable=1,location=0,scrollbars=yes,copyhistory=0,top=10,left=10');
	w.document.write('<html>');
	/*w.document.write('<style>#bg1 {height:100%; background:url(/d/56042/t/images/main.jpg) top right no-repeat}#bg2 {background:url(/d/56042/t/images/pic1.jpg) top left no-repeat}#bg3 {background:url(/d/56042/t/images/logo.jpg) top left no-repeat; height:91px}#bg4 {float:right; width:980px; text-align:right; margin:25px 0 0 0; font-size:19px; color:#848586 }</style><div id="padd"><img src="/d/56042/t/images/link.gif" width="92" height="11" border="0" usemap="#Map">'
					+'<map name="Map"><area shape="rect" coords="3,1,21,13" href="/"><area shape="rect" coords="43,0,54,10" href="mail">'
					+'<area shape="rect" coords="78,2,104,11" href="javascript:printMe()"></map></div>'
					+'<div id="bg3"><div id="bg4"><div id="pad"><span style=" font-size:11px">многоканальный телефон</span><br>+7 (812)<b style="color:#CC0000">313-28-73</b> </div></div><br style="clear: both"></div>'
					);*/
		w.document.write('<img src="/d/56042/t/images/logo.jpg" width="277" height="91" border="0" /><div id="padd"><img src="/d/56042/t/images/link.gif" width="92" height="11" border="0" usemap="#Map">'
					+'<map name="Map"><area shape="rect" coords="3,1,21,13" href="/"><area shape="rect" coords="43,0,54,10" href="mail">'
					+'<area shape="rect" coords="78,2,104,11" href="javascript:printMe()"></map></div>'
					+'<div id="bg3"><div id="bg4"><div id="pad"><span style=" font-size:11px">многоканальный телефон</span><br>+7 (812)<b style="color:#CC0000">313-28-73</b> </div></div><br style="clear: both"></div>'
					);

	w.document.write('<style>');
	w.document.write('body,td { font-size:12px; font-family: verdana; }');
	w.document.write('table.table1 { font-size:8pt; border-collapse: collapse; font-family: verdana; }');
	w.document.write('table.table1 td { padding: 4px; border: 1px solid #333333 }');
	w.document.write('table.table0 { font-size:8pt; border-collapse: collapse; font-family: verdana; }');
	w.document.write('table.table0 td { padding: 4px; border-width: 0px; }');
	w.document.write('</style>');
	w.document.write('<body>');
	w.document.write(d.innerHTML);
	w.document.write('</body></html>');
        w.document.close();
        w.focus();        
        w.print(); 
     
 }
