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>');
	w.document.write('body,td { font-size:11px; font-family: Tahoma; text-align:justify; color:black }');
	w.document.write('table.table1 { font-size:11px; border-collapse: collapse; font-family:Tahoma; }');
	w.document.write('table.table1 td { padding: 4px; border: 1px solid #333333 }');
	w.document.write('table.table0 { font-size:11px; border-collapse: collapse; font-family:Tahoma; }');
	w.document.write('h1 { font-size:15px;}');	
	w.document.write('table.table0 td { padding: 4px; border-width: 0px; }');
	w.document.write('</style>');
	w.document.write('<body><div style=" font:11px  Tahoma, Geneva, sans-serif"><div style=" float:right">Юридический центр "Корпоративная практика"<br> все виды юридических услуг для бизнеса      <br>      телефон/факс +7 (495) 989-2215<br> г. Москва, ул.Забелина, д.1, офисы 1,2<br> e-mail: moscow@corporate-law.ru<br> web-site: http://corporate-law.ru</div><img src="http://corporate-law.ru/d/44928/d/logo.gif" width="260" height="52" align="left"> <br class="all"></div><div style="clear:both; height:1px"></div>');
	w.document.write(d.innerHTML);
	w.document.write('</body></html>');
        w.document.close();
        w.focus();        
        w.print(); 
     
 }
