var showing = "";

function showDiv(menuID) {
  if (document.getElementById) {
    document.getElementById(menuID).style.visibility = "visible";
  }
  showing = menuID;
}

function hideDiv() {
  if (document.getElementById) {
    document.getElementById(showing).style.visibility = "hidden";
  }
}