//Первая версия с Google Maps парит в IE

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('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	w.document.write('<html xmlns="http://www.w3.org/1999/xhtml">');
	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 onload="window.print()">');
	w.document.write(d.innerHTML);
	w.document.write('</body></html>');
	w.document.close();
	w.focus();         
     
 }
