var show = false; function showInfo(tag) { var obj = document.getElementById(tag); if (show == true) { obj.style.visibility = "hidden"; show = false; } else if (show == false) { obj.style.visibility = "visible"; show = true; } }