  function toggle(id) {
   var s = document.getElementById(id).style;
   s.display = (s.display == "block" ? "none" : "block");
  }

