function showblock(x){
omenu = document.getElementById(x);
omenu.style.visibility = "visible";
}

function hideblock(x){
omenu = document.getElementById(x);
omenu.style.visibility = "hidden";
}
