function toggle(e, to) {
  if (to.style.display == "none") {
       	to.style.display = "block";
} else {
        to.style.display = "none";
   }
}