function showMenu(no)
{
var temp=document.all["Div"+no];
temp.style.visibility="visible";
}
function hideMenu(no)
{
var temp=document.all["Div"+no];
temp.style.visibility="hidden";
}