<!--
/*MAIN MENU*/

function displayMenu(menuId) {
	//Nascondo gli altri menù
	hideOtherMenu(menuId);
	//Visualizzo il menù indicato
	if (document.getElementById(menuId)) {
		if (document.getElementById(menuId).style.display!='') {
			document.getElementById(menuId).style.display='';
		}
	}
}

function hideMenu() {
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('menuGruppo'+i)) {
			document.getElementById('menuGruppo'+i).style.display='none';
		}
	}
}

function hideOtherMenu(menuId) {
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('menuGruppo'+i)) {
			if (('menuGruppo'+i) != menuId) {
				document.getElementById('menuGruppo'+i).style.display='none';
			}
		}
	}
}

function apriFinestra(url, windowName) {
	window.open(url, windowName, "menubar,toolbar,location,status,scrollbars,resizable,dependent,width=900,height=700,left=10,top=10");
}

/*FINE MAIN MENU*/
//-->
