function sel_go(SelOpt) {

var destination, location;

if (SelOpt.options[SelOpt.selectedIndex].value.indexOf(",") != -1){
    destination = SelOpt.options[SelOpt.selectedIndex].value.split(",");
    location = destination[0] + "\#" + destination[1].toLowerCase(); }
else
   {
    if (SelOpt.options[SelOpt.selectedIndex].value != "none") {
       location = SelOpt.options[SelOpt.selectedIndex].value
    }                       
}                       
window.open(location,"_self");
}