function showMenu(id) {
  document.getElementById(id).style.visibility = 'visible';
}

function hideMenu(id) {
  document.getElementById(id).style.visibility = 'hidden';
}