//thanks to http://www.ozzu.com/javascript-tutorials/tutorial-expand-collapse-blocks-and-navigation-trees-t89202.html

function toggle(id) {
   var e = document.getElementById(id);
  
   if (e.style.display == '') {
     e.style.display = 'none';
   } else {
     e.style.display = '';
   }
}

