
function showmenu(elmnt)
{
  x=document.getElementById(elmnt);
  x.style.visibility="visible";
}

function hidemenu(elmnt)
{
  x=document.getElementById(elmnt);
  x.style.visibility="hidden";
}
