function gotoURL(selectElement) {
 var URL = selectElement.options[selectElement.selectedIndex].value;
 if (URL != "") {
 window.location.href = URL;
 }
}

