
function opencat(cat){
 if(cat.style.display=="none"){
 cat.style.display="";
 
 } else {
 cat.style.display="none";
 
 }
}