/* Generic function used by dropdown navigation forms */
function jump(formid){
    var f;
    var a = document.getElementsByTagName("select");
    if (a.length > 0) 
    {
        for(var i=0; i<a.length; i++) 
        {
            var elName = a[i].name;
            if (elName == "target" + formid) 
            {
                f = a[i];
                break;
            }
        }
        var URL = f.options[f.selectedIndex].value;
        window.location.href = URL;
    }
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function NewWindow(mypage, myname, w, h, scroll, toolbar) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar='+toolbar+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
