function showMenu(elmnt)
{
document.getElementById(elmnt).style.display = ""
}
function hideMenu(elmnt)
{
document.getElementById(elmnt).style.display = "none"
}