codice:
function autoPopup() 
{
   var tableId = document.getElementById("tableData");

   var stili = "top=10, left=250, width=800, height=600, status=no, center=yes, menubar=yes, toolbar=yes, scrollbars=yes, resizable=yes";
   var testo = window.open("", "", stili);
      testo.document.write("<html>\n");
      testo.document.write(" <head>\n");
      testo.document.write("  <title>Stampa della Ricerca</title>\n");
      testo.document.write("  <basefont size=2 face=Tahoma>\n");
      testo.document.write(" </head>\n");
      testo.document.write("<body topmargin=50>\n");
	  
	  testo.document.write("<table border='0' cellspacing='0' cellpadding='10' width='100%' align='center'>\n");	 
	  testo.document.write("<tr><td class='title_high' align='center'>Stampa degli elementi visualizzati in ricerca</td></tr>\n");
	  testo.document.write("<body topmargin=50>\n");
	  testo.document.write("<tr><td align='center'><input type='button' id='cmdStampa' name='cmdStampa' value='Stampa' onClick='javascript:window.print();'/></td></tr>\n");
	  testo.document.write("</table>\n");
	  testo.document.write("<link rel='stylesheet' type='text/css' href='/iw/cci/meta/no-injection/iw-mount/default/main/WORKAREA/TestWA/sites/Extranet_MF/css/style.css'>\n");
	   
      testo.document.write(tableId.innerHTML);
	  
      testo.document.write("</body>\n");
      testo.document.write("</html>");
}