  <!--

  function toggle(id) {
    var section = document.getElementById(id);
    if (section.style.display == 'none'){
      showSection(id);
    } else {
      hideSection(id);
    }
  }

  function showSection(id) {
    var section = document.getElementById(id);
    section.style.display = 'inline';
   }

  function hideSection(id) {
      var section = document.getElementById(id);
      section.style.display = 'none';
  }


  -->