function showHideBrokers(id, job) { var the_div = document.getElementById(id); var action = job; if (job == "show") { the_div.style.display = "block"; } else { the_div.style.display = "none"; } }