doesDom = document.getElementById; visibleLinks="none"; function showLinks(brandLinks) { if (doesDom) { hideLinks(); document.getElementById(brandLinks).style.visibility = "visible"; visibleLinks = brandLinks; } } function hideLinks() { if (doesDom && visibleLinks!="none") { document.getElementById(visibleLinks).style.visibility = "hidden"; visibleLinks = "none"; } } // Pull-Page Jumps function jumpto(dropdown) { var URL = dropdown.options[dropdown.selectedIndex].value; if(URL != "") { parent.location.href=URL; } } // this is for opening pop-up windows function openPopup( url, name, widgets, openerUrl ) { var host = location.hostname; window.top.name = "opener"; var popupWin = window.open( url, name, widgets ); if ( popupWin && popupWin.opener ) { if ( openerUrl ) { popupWin.opener.location = openerUrl; popupWin.focus(); } } }