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: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(); 
     
 }