function ShowMenu(id)
{
  document.getElementById(id).style.visibility = 'visible';
}

function HideMenu(id)
{
  document.getElementById(id).style.visibility = 'hidden';
}