function toggle(id) {
       document.getElementById(id).style.display = (document.getElementById(id).style.display == 'block')?'none':'block';
}