

function stampoCentro()  {
   var a = window.open('','','width=300,height=300');
   a.document.open("text/html");
   a.document.write(document.getElementById('resultcontainer').innerHTML);
   a.document.close();
   a.print();
   a.close();
}  


function stampoTabAmmorto()  {
   var a = window.open('','','width=300,height=300');
   a.document.open("text/html");
   /*a.document.write("<link href=\"http://www.telemutuo.it/style/style.css\" rel=\"stylesheet\" type=\"text/css\" media=\"print\" />");*/
   a.document.write(document.getElementById('stampoTable').innerHTML);
   a.document.close();
   a.print();
   a.close();
}  

function stampoTutto()  {
	print();
}  





