<!-- MOSTRA E NASCONDE I TAG DIV -->
function show(id) { 
	
	//gestisce visualizzazione/scomparsa del menù laterale
	if (id=="Menu"){
		var div=document.getElementById("DIVContenuto");
		var minWidth = 300; // Minimum width of the div
		
		//da non visibile a visibile
		if (document.getElementById(id).style.display == "none"){
			var actualWidth = parseFloat(div.style.width) - WidthMargin
		//da visibile a non visibile
		} else {
			var actualWidth = parseFloat(div.style.width) + WidthMargin
		}
						
		div.style.width=Math.max(actualWidth, minWidth)+"px";
		
	}
		
	if (document.getElementById) { // DOM3 = IE5, NS6
		if (document.getElementById(id).style.display == "none"){
			document.getElementById(id).style.display = 'block';
		} else {
			document.getElementById(id).style.display = 'none';
		}	
	} else { 
		if (document.layers) {	
			if (document.id.display == "none"){
				document.id.display = 'block';
			} else {
				document.id.display = 'none';
			}
		} else {
			if (document.all.id.style.visibility == "none"){
				document.all.id.style.display = 'block';
			} else {
				document.all.id.style.display = 'none';
			}
		}
	}
		
}
