// JavaScript Document
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;
}   

function jumpMenu(targ,selObj,restore){ //v3.0
if(selObj.options[selObj.selectedIndex].value != "null")
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}