function mytoggle(id) { obj = document.getElementById(id); obj.style.display = obj.style.display=="none" ? "block" : "none"; }