function menu_goto( menuform ){  // Generated by thesitewizard Navigation Menu Wizard 2.2  // Visit http://www.thesitewizard.com/ to get your own  // customized navigation menu FREE!  var baseurl = 'http://www.digitalscout.com/' ;  selecteditem = menuform.url.selectedIndex ;  newurl = menuform.url.options[ selecteditem ].value ;  if (newurl.length != 0) {    location.href = baseurl + newurl ;  }}document.writeln( '<form action="chgoto" method="get">' );document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );document.writeln( '<option value="index.php">Select...</option>' );document.writeln( '<option value="baseball/stats.php">Baseball statistics</option>' );document.writeln( '<option value="basketball/stats.php">Basketball statistics</option>' );document.writeln( '<option value="football/scoutware.php">Football scouting</option>' );document.writeln( '<option value="football/stats.php">Football statistics</option>' );document.writeln( '<option value="hockey/index.php">Hockey statistics</option>' );document.writeln( '<option value="soccer/index.php">Soccer statistics</option>' );document.writeln( '<option value="softball/stats.php">Softball statistics</option>' );document.writeln( '<option value="trackandfield/index.php">Track and field statistics</option>' );document.writeln( '<option value="volleyball/index.php">Volleyball statistics</option>' );document.writeln( '</select>' );document.writeln( '</form>' );