function dropDownJump(ddId) {
    var dd = document.getElementById(ddId);
    if (dd) {
        if (dd.options[dd.selectedIndex].value != "null")  {
            window.location = dd.options[dd.selectedIndex].value;
        }
    }
    return false;
}   

function bookmarkPage(title, url) {
    if (window.external) {
        window.external.AddFavorite(window.location, document.title);
    }
    else if (window.sidebar) {
        window.sidebar.addPanel(document.title, window.location, "");
    }
    return false;
}

function quicklinkJump(ddId) {
    var dd = document.getElementById(ddId);
    if (dd) {
        if (dd.options[dd.selectedIndex].value != "null")  {
            window.location = dd.options[dd.selectedIndex].value;
        }
    }
    return true;
}   

