function toggleBox(box) { if(typeof box == "string") { box = document.getElementById(box); } if(box.style.display != "block") { box.style.display = "block"; } else { box.style.display = "none"; } return false; }