	function stampa_popup() {

	var testo = "";
	testo += "<html>";
	testo += "<head>";
	testo += "<title>"+document.title+"</title>";
	testo += "<link rel='stylesheet' type='text/css' href='_stile.100406.css'>";
	testo += ""
	testo += "<style>"
	testo += "	body {"
	testo += "		margin:14px;"
	testo += "		font-family: Verdana;"
	testo += "		font-size: 10pt;"
	testo += "		}"
	testo += ""
	testo += "	h2 {"
	testo += "		font-family: Times New Roman;"
	testo += "		font-weight: normal;"
	testo += "		color: #000000;"
	testo += "		font-size: 20pt;"
	testo += "		margin-top: 0px;"
	testo += "		margin-bottom: 8px;"
	testo += "		}"
	testo += "</style>"
	testo += ""
	testo += "</head>";
	testo += "<body>";
	testo += ""
	testo += "<div align='left'>";
	testo += "<h2>"+document.title+"</h2>";
	testo += ""
	testo += ""+document.getElementById('page_print_news').innerHTML+"";
	testo += ""
	testo += "..."
	testo += "</div>";
	testo += ""
	testo += "</body>";
	testo += "</html>";

	var ident_finestra = window.open("","finestra_stampa","height=400,width=600");
	ident_finestra.document.open();
	ident_finestra.document.write(testo);
	ident_finestra.document.close();
	ident_finestra.print();
//	ident_finestra.close();
	}
