// JavaScript Document
window.onload = go_there;
window.unonload = function() {};

function go_there(navigation_list) { 

    // SELECT CURRENT PAGE 
    var new_page = navigation_list.options[navigation_list.selectedIndex].value;

    // IS NEW PAGE SELECTED TO DISPLAY?
    if (new_page != "") { 
        self.location = new_page;
    } 
} 