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