
    function div_on(id) {
       var e = document.getElementById(id);
       
          e.style.display = 'block';
      
    }


