function opencat(cat,img)
{
  if(cat.style.display=="none"){
     cat.style.display="";
     img.src="img/t05.gif";
  } else {
     cat.style.display="none"; 
     img.src="img/t02.gif";
  }
}

