function bm_quick_nav(from){
    if ( !from.options || from.selectedIndex < 0 ) return;
    
    var v = from.options[from.selectedIndex].value;

    if ( v == "none" || !v.length ) return;
    
    location = v;
}

