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

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