
function centra() {	
	client_type = navigator.appName
	//alert(client_type);
	document.all.menu_azienda.style.left=274;
	document.all.menu_servizi.style.left=344;
	//document.all.menu_serv.style.left=324;
	
	if(client_type=="Microsoft Internet Explorer") {
		document.all.menu_azienda.style.top= 214;
		document.all.menu_servizi.style.top= 214;
	}
	else
	{
		document.all.menu_azienda.style.top= 214;
		document.all.menu_servizi.style.top= 214;
	}
	
	if (document.body.offsetWidth>800){	
		
		// questo è il caso di netscape
		if(client_type=="Netscape"){
			// per centrare
			document.all.menu_azienda.style.left=document.body.offsetWidth/2 - 130;
			
			// per la trasparenza
			document.all.menu_azienda.style.MozOpacity = 0.80;
			
			// per centrare
			document.all.menu_servizi.style.left=document.body.offsetWidth/2 -60;
			
			// per la trasparenza
			document.all.menu_servizi.style.MozOpacity = 0.80;
		}
		
		// questo è il caso di ie
		else if(client_type=="Microsoft Internet Explorer") {
			// questo è per centrare
			document.all.menu_azienda.style.left=document.body.offsetWidth/2 - 125;
			
			
			document.all.menu_servizi.style.left=document.body.offsetWidth/2 - 55 ;
			
			
			// questo è per la trasparenza
			obj_menu_soc = document.getElementById('menu_azienda');
			obj_menu_soc.style.filter = "alpha(opacity=80)";
			
			// questo è per la trasparenza
			obj_menu_serv = document.getElementById('menu_servizi');
			obj_menu_serv.style.filter = "alpha(opacity=80)";
		}
		
		// questa parte è da implementare
		else{
			document.all.main.style.left=document.body.offsetWidth/2 - 400;
			document.all.riquadro.style.left=document.body.offsetWidth/2 - 407;
			document.all.riquadro.style.height = 920 ;
		}
	}
}

