Ragazzi questa è una funzione che mi fa aprire uan pop up quando la richiamo .....il mio problema è che non so come dirgli di farmi vedere la scroollbar in questa pop up grazie!!
<script language="javascript">
function stampa_popup(tabella) {
var testo = "<html><head><title>"+document.title+"</title></head>";
testo +="<link href=\"css.css\" rel=\"stylesheet\" type=\"text/css\">"
testo += "<body><center><a href=\"javascriptrint();\"><img src=\"img/printer.gif\" alt=\"STAMPA QUESTA PAGINA\" border=\"0\"></a>
";
testo += "<table width=\"100%\" border=\"0\"><tr><td>";
testo += document.getElementById(tabella).innerHTML+"</td></tr></table>";
testo += "</body></html>";
var ident_finestra = window.open("","finestra_stampa","height=440,width =400");
ident_finestra.document.open();
ident_finestra.document.write(testo);
ident_finestra.document.close();
}
</script>