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