function toggleVisible(obj) {
  if(obj.style.display=="block") 
    obj.style.display="none";
  else
    obj.style.display="block";
}

