function printpop(printwhat) {
	var testo = "";
	testo += "<html>";
	testo += "<head>";
	testo += "<link href=\"/css/print.css\" rel=\"stylesheet\" type=\"text/css\" />";
	testo += "<title>"+document.title+"</title>";
	testo += "</head>";
	testo += "<body>";
	testo += document.getElementById(printwhat).innerHTML;
	testo += "</body>";
	testo += "</html>";
	var ident_finestra = window.open("","stampa","height=400,width=400");
	ident_finestra.document.open();
	ident_finestra.document.write(testo);
	ident_finestra.document.close(); 
	ident_finestra.print();
	ident_finestra.close(); 
}