function hideShow(thisLI) {
 if(!document.getElementById) {
  return;
 }
 obj = document.getElementById(thisLI);
 obj.style.display = (obj.style.display == "block" ) ? "none" : "block";
}