


function getSelectedValue(id) {
    var sel = document.getElementById(id);
    if (sel == null) return 'undef'; 
    return sel.options[sel.selectedIndex].value;
}
    
function go(url) {
    location.replace(url);
    return false;
}    

function call(search) {
    location.search=search;
    return false;
}    
