<!-- 

function SelectIt(){
        if (document.Links.Select.options[document.Links.Select.selectedIndex].value != "none"){ 
        location = document.Links.Select.options[document.Links.Select.selectedIndex].value}        
}

function goThere(active_selectbox) {
        var index = eval('document.links.menu_form.' + active_selectbox + '.selectedIndex');
        var destination = eval('document.menu_form.' + active_selectbox + '.options[index].value');
        if (destination != "") {  
                window.location.href = destination;
        }
}
// --> 
