// JavaScript Document

function showBranch(branch){
  var objBranch = document.getElementById(branch).style;
  if(objBranch.display == "block")
    objBranch.display = "none";
  else {
    objBranch.display = "block";
		// togliere quello che segue per non chiudere i menu senza focus
		for (var i=1; i<=3; i++){
			if(i!=branch){
				objBranch = document.getElementById(i).style;
				objBranch.display="none";
			}
		}
	}
}

function showArea(area){
  var objArea = document.getElementById(area).style;
  if(objArea.display=="block")
    objArea.display="none";
  else {
    objArea.display="block";
	// 	togliere quello che segue per non chiudere i menu senza focus
	//	for (var i=11; i<=14; i++){
	//		if(i!=area){
	//			objArea = document.getElementById(i).style;
	//			objArea.display="none";
	//		}
	//	}
	}
}
