function StampaImmagine(URL)
	{
	var finestra1 = window.open("", "ingrandimento", "width=" + screen.availWidth + ", height=" + screen.availHeight + ", scrollbars=yes");	
	finestra1.document.writeln("<head><title> Stampa immagine</title></head>");
	finestra1.document.writeln("<html><body>");
	finestra1.document.writeln("<img src='" + URL + "' id='Grande' ><BR><BR><BR>");
	finestra1.document.writeln("		<img src='Loghi/LogoPRJ_2.png' title = 'Logo PRJ' alt='build' align='left' hspace='45' vspace='1'  > ");
	finestra1.document.writeln("		<B>Project Service s.a.s.</FONT></B> si trova in: <BR> ");
	finestra1.document.writeln("		Via Fornasari, 18 - Castel Bolognese (RA) 48014 IT<BR> ");
	finestra1.document.writeln("		Tel +39 0546 656802 ");
	finestra1.document.writeln("	 <script src='http://www.google-analytics.com/urchin.js' type='text/javascript'></script>   ");
	finestra1.document.writeln("	 <script type='text/javascript'> _uacct = 'UA-336208-3'; urchinTracker(); </script>         ");
	finestra1.document.writeln("</body></html>   ");    
	finestra1.document.close();
	finestra1.window.print();		
	finestra1.window.close();	
	}

function ApriFinestraMessaggio(Messaggio)
	{
	var finestra = window.open("", "ingrandimento", "width=" + 320 + ", height=" + 140 + ", scrollbars=no");
	if (window.focus) {finestra.focus()}
	finestra.document.writeln("<html> <i>" +  Messaggio + "</i>");
	finestra.document.writeln("<p align='center'><a href='javascript:window.close(); '><font color='#550000'>Chiudi<br /></font></a></p></body></html> ");
	finestra.document.close();		
	}