<!--
var idmax = 1;
function allClose() {
  for (x=1;x<idmax;x++) {
    targetElementClose = document.all("id"+x);
      targetElementClose.style.display = "none";
  }
}

function allOpen() {
  for (x=1;x<idmax;x++) {
    targetElementClose = document.all("id"+x);
      targetElementClose.style.display = "";
  }
}

function myMenu(name) {
  targetElement = document.all(name);
    if (targetElement.style.display == "none") {
    allClose();
        targetElement.style.display = ""
    }
  else {
      targetElement.style.display = "none"
    }
}

//-->