// JavaScript toggle visibility

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

}
