function mostraSubMenu(livello) {
  document.getElementById(livello).style.visibility = "visible";
}
function nascondiSubMenu(livello) {
  document.getElementById(livello).style.visibility = "hidden";
}

