menujumpBase = 'http://usd116.org/home/';

function menujump(menuform)
{
    selected = menuform.quicklink.selectedIndex;
    newurl = menuform.quicklink.options[selected].value;
    if (newurl.length !=0) {
        if (newurl.substr(0,7)=='http://') location.href = newurl;
        else location.href = menujumpBase + newurl;
    }
}