/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
          
          
}


