function showhide(id) { if (document.getElementById) { obj = document.getElementById(id); if (obj.style.display == "none") { obj.style.display = ""; } else { obj.style.display = "none"; } } } function accountLogon() { box = document.onlineAccount.selection; destination = box.options[box.selectedIndex].value; if (destination) location.href = destination; }