function ApriInFullScreen(URL)  <!-- Codice JAVA per aprire immagini in finestra di popup  -->
	{
	var finestra = window.open("", "ingrandimento", "width=" + screen.availWidth-10 + ", height=" + screen.availHeight-10 + ", scrollbars=yes");
	if (window.focus) {finestra.focus()}
	w=screen.availWidth-20;
	h=screen.availHeight-20; 
   // finestra.resizeTo(w,h);
	finestra.document.writeln("<head><title> Zoom immagine </title></head>");
	finestra.document.writeln("<html>");
	finestra.document.writeln("<br /><img src='" + URL + " ' width='100%'  id='Grande'><br /><br /><br />");
	finestra.document.writeln("	<table onmouseup='1' style='text-align: center; width: 100%;' border='3' cellpadding='5' cellspacing='1'>");
	finestra.document.writeln("	<tbody>");
	finestra.document.writeln("	<tr><td align='Left' valign='center'>");
	finestra.document.writeln("		<a href='DoveSiamo.Html'>");
	finestra.document.writeln("		<img src='Loghi/LogoPRJ_1.png' title = 'Logo PRJ' alt='build' align='left' hspace='15' vspace='1' border='0' /> ");
	finestra.document.writeln("		<b><font color=#000000></u>Project Service s.a.s.</font></B></a> si trova in: <br> ");
	finestra.document.writeln("		Via Fornasari, 18 - Castel Bolognese (RA) 48014 IT<br> ");
	finestra.document.writeln("		Tel +39 0546 656802</td> ");
	finestra.document.writeln(" <td align='undefined' valign='undefined'>  ");
	finestra.document.writeln("		<a href='javascript: window.print();'><img src='Immagini/IconaStampante.gif' border='0' /><br /> ");
	finestra.document.writeln("		<font color=#000000></u>Stampa</font></a></td> ");
	finestra.document.writeln(" <td align='undefined' valign='undefined'> ");	
	finestra.document.writeln("		<a href='javascript:window.close(); '><img src='Immagini/IconaEsci48.png' border='0' /><br /> ");
	finestra.document.writeln("		<font color=#000000></u>Chiudi</font></a></td></tr></tbody></table> ");
	finestra.document.writeln("	 <script src='http://www.google-analytics.com/urchin.js' type='text/javascript'></script>   ");
	finestra.document.writeln("	 <script type='text/javascript'> _uacct = 'UA-336208-3'; urchinTracker(); </script>         ");
	finestra.document.writeln("</body></html>");  	
	finestra.document.close();		
	}
	