function menu_goto( menuform )
{
  var baseurl = 'http://www.focusedtutoring.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = newurl ;
  }
}
/*
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="index.html">coach</option>' );
document.writeln( '<option value="tutoring.html">tutor</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
*/

