
function visible(cat)
{elmt=document.getElementById(cat);if(elmt.style.display=="none")
elmt.style.display="";else
elmt.style.display="none";}
