function aprifinestra(stringa,visalt,larg,altezza){
				stats = 'toolbar=no,location=no,directories=no,status=no,menubar=no,height='+altezza+', width='+larg 
				stats += ', scrollbars=yes,resizable=no,top = 0, left=eval(screen.width-10)'
				
				MsgBox = window.open ("","msgWindow",stats);
				MsgBox.opener = window;
				MsgBox.opener.name = "opener";
				MsgBox.document.write("<head><title>Realizzazioni Fabbro Camporeale<\/title><STYLE type=text/css>@import url(stilefabbro.css);<\/STYLE><\/head><body>");
				MsgBox.document.write ("<img src='img/"+stringa+"'");
				MsgBox.document.write ("alt='"+visalt+"'></\body>");
				MsgBox.resizeTo(larg,altezza);
				MsgBox.document.close();
				MsgBox.document.focus();
			}

