function gotoURL(theSelect) {
        theURL = theSelect.options[theSelect.selectedIndex].value;
        if (theURL != "") {
                if ((parseInt(navigator.appVersion) == 2) && (navigator.appName == "Microsoft Internet Explorer"))
                        top.location = theURL;
                else top.document.location = theURL;
        }
}