// JavaScript Document function showCategory(form_name, field_name) { var el = document.forms[form_name][field_name]; var current_selection = el.value; current_selection = current_selection.toLowerCase().replace(" ", "_"); // Formats the string to match our CSS format standards. //alert(current_selection); document.location.href = "/jobs/job-board.php?category=" + current_selection; return true; hideAllCategories(); document.getElementById(current_selection).style.display = "table-row"; } function hideAllCategories() { document.getElementById('physicians').style.display = "none"; document.getElementById('nurses').style.display = "none"; document.getElementById('administration').style.display = "none"; document.getElementById('medical_staff').style.display = "none"; document.getElementById('business_office').style.display = "none"; }