// JavaScript Document
		function setHeight(){
			if (browser == "Internet Explorer"){
				var h1=-1;
				var h2;
				var h3;
				
				tabSX = document.getElementById("menuSx");
				h1=tabSX.offsetHeight;
				tabCX = document.getElementById("contenuti");
				h2=tabCX.offsetHeight;
				tabDX = document.getElementById("menuDx");
				h3=tabDX.offsetHeight;
				
				
				var h_max = 0;
				if (h1>h_max) h_max=h1;
				if (h2>h_max) h_max=h2;
				if (h3>h_max) h_max=h3;


				correzione = 0;
				
				cellSX = document.getElementById("altezzaSX");	
//				alert(h_max - h1 - 75);
				if (h_max - h1 - 75 > 0 ) cellSX.style.height = (h_max - h1 - 75) +"px";
				else {
					cellSX.style.height = "0px";
					correzione = h_max - h1 - 75;
				}


				cellCX = document.getElementById("altezzaCX");	
				cellCX.style.height = (h_max - h2 - correzione) +"px";				
			
				cellDX = document.getElementById("altezzaDX");	
				cellDX.style.height = (h_max - h3 - correzione) +"px";				
	
				document.getElementById("footer").style.top= (h_max+147 - correzione)+"px";				
			} else {
				var h1=-1;
				var h2;
				var h3;
				
				tabSX = document.getElementById("menuSx");
				h1=tabSX.offsetHeight;

				tabCX = document.getElementById("contenuti");
				h2=tabCX.offsetHeight;
				tabDX = document.getElementById("menuDx");
				h3=tabDX.offsetHeight;
				

				
				var h_max = 0;
				if (h1>h_max) h_max=h1;
				if (h2>h_max) h_max=h2;
				if (h3>h_max) h_max=h3;								

				correzione = 0;
				
				cellSX = document.getElementById("altezzaSX");	
//				alert(h_max - h1 - 75);
				if (h_max - h1 - 75 > 0 ) cellSX.style.height = (h_max - h1 - 75) +"px";
				else {
					cellSX.style.height = "0px";
					correzione = h_max - h1 - 75;
				}


				cellCX = document.getElementById("altezzaCX");	
				cellCX.style.height = (h_max - h2 - correzione) +"px";				
			
				cellDX = document.getElementById("altezzaDX");	
				cellDX.style.height = (h_max - h3 - correzione) +"px";				
	
				document.getElementById("footer").style.top= (h_max+147 - correzione)+"px";				

			}
		
		}
		


		var detect = navigator.userAgent.toLowerCase();
		var OS,browser,version,total,thestring;
		
		if (checkIt('konqueror'))
		{
			browser = "Konqueror";
			OS = "Linux";
		}
		else if (checkIt('safari')) browser = "Safari"
		else if (checkIt('omniweb')) browser = "OmniWeb"
		else if (checkIt('opera')) browser = "Opera"
		else if (checkIt('webtv')) browser = "WebTV";
		else if (checkIt('icab')) browser = "iCab"
		else if (checkIt('msie')) browser = "Internet Explorer"
		else if (!checkIt('compatible'))
		{
			browser = "Netscape Navigator"
			version = detect.charAt(8);
		}
		else browser = "An unknown browser";
		
		if (!version) version = detect.charAt(place + thestring.length);
		
		if (!OS)
		{
			if (checkIt('linux')) OS = "Linux";
			else if (checkIt('x11')) OS = "Unix";
			else if (checkIt('mac')) OS = "Mac"
			else if (checkIt('win')) OS = "Windows"
			else OS = "an unknown operating system";
		}
		
		function checkIt(string)
		{
			place = detect.indexOf(string) + 1;
			thestring = string;
			return place;
		}