
function stampa_popup() {
var testo = "<html><head><title>"+document.title+"</title></head><link rel=\"stylesheet\" href=\"css/style.css\" type=\"text/css\" />";
testo += "<table width=\"100%\" border=\"0\"><tr><td>";
testo += "<img src=\"gif/Conf_PC.gif\" width=200 height=55 border=0 alt=\"Confindustria Piacenza\"></td></tr>";
testo += "<tr><td><br><br>";
testo += document.getElementById('sezione').innerHTML+"<br>";
testo += document.getElementById('articolo').innerHTML+"</td></tr></table>";
testo += document.getElementById('fondo').innerHTML;
testo += "</body></html>";
var ident_finestra = window.open("","finestra_stampa","height=800,width=800,scrollbars=yes");
ident_finestra.document.open();
ident_finestra.document.write(testo);
ident_finestra.document.close();
ident_finestra.print();
}
