// JavaScript Document
<!-- Per cambiare lo sfondo di una colonna-->
function cambio(obj, new_color)
	{	obj.bgColor=new_color	<!-- <td onmouseout="cambio(this, '#E6E6FF')" onmouseover="cambio(this, '#CCCCFF')"-->
	}

<!-- Per aprire le immagini in un'altra finestra -->
function apriWin(newurl)
	{	var distSx; 		<!-- <a href="javascript:apriWin('ImmStand/Foto1.jpg');"-->
		var distAlto;	
		screenwidth = screen.width; 
		screenheight = screen.height;  
		distSx = (screenwidth) /4;
		distAlto = (screenheight) /10; 
		popup=window.open(newurl, "NewWindow", " toolbar=no,directories=no,menubar=scrollbars=no,width=400,height=400,left="+distSx+",top="+distAlto); 
	}
		
