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