function menu_goto( menuform )
{
    // see http://www.thesitewizard.com/archive/navigation.shtml
    // for an explanation of this script and how to use it on your
    // own site

    var baseurl = "http://www.missionamerica.com" ;
    selecteditem = menuform.year.selectedIndex ;
    newurl = menuform.year.options[ selecteditem ].value ;
    
    if (newurl.length != 0) {
      location.href = baseurl + newurl ;
   }
}
