function menu_goto( menuform )

{

    // see http://www.thefreecountry.com/articles/javascriptmenu.html

    // for an explanation of this script and how to use it on your

    // own site

    selecteditem = menuform.newurl.selectedIndex ;

    newurl = menuform.newurl.options[ selecteditem ].value ;

    if (newurl.length != 0) {

      location.href = newurl ;

    }

}