
<!--
function menu_goto( menuform )
{
    // Be sure the dropdownlist.js file is referenced in the head of the html doc


    var baseurl = "http://www2.kumc.edu" ;
    selecteditem = menuform.newurl.selectedIndex ;
    newurl = menuform.newurl.options[ selecteditem ].value ;
    if (newurl.length != 0) {
      location.href = baseurl + newurl ;
    }
}
//-->


