

function goToURL(submitButton) {
        var appForm = submitButton.form;
        //alert("target: " + appForm.link.value);
        selector = appForm.link;

        appForm.method="get";
        newAdr=selector[selector.selectedIndex].value;
        if (newAdr != 'none'){
            var newURL = newAdr.slice(0,-1);
            var target = newAdr.slice(-1);
            if(target != "T"){
                window.open(newURL);
            }else{
                location.href=newURL;
            }
        }
        return false;
}
    
