function stampa_popup() {
var testo = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"><html><head><link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\"><title>"+document.title+"</title></head><body><div class=\"txt3\"><br><b>"+document.title+"</b><br></div>";
testo += document.getElementById('livello').innerHTML+"</body></html>";
var ident_finestra = window.open('','finestra_stampa',"height=500,width=550,'toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0, top=1, left=1'");
ident_finestra.document.open();
ident_finestra.document.write('',testo);
ident_finestra.document.close();
ident_finestra.print();
ident_finestra.close(); 
}
function salva_popup() {
var testo = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"><html><head><title>"+document.title+"</title></head><body>";
testo += document.getElementById('livello').innerHTML+"</body></html>";
var ident_finestra = window.open('','finestra_stampa',"height=600,width=760,'toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0, top=1, left=1'");
ident_finestra.document.open();
ident_finestra.document.write(testo);
ident_finestra.document.close();
ident_finestra.document.execCommand('SaveAs',1,'stampa.doc'); 
ident_finestra.close(); 
}