function menu_goto( menuform )
{
  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.php">--Select a Schedule--</option>' );
document.writeln( '<option value="schedules/15full.pdf">15 Full</option>' );
document.writeln( '<option value="schedules/16early.pdf">16 Early</option>' );
document.writeln( '<option value="schedules/16late.pdf">16 Late</option>' );
document.writeln( '<option value="schedules/17early.pdf">17 Early</option>' );
document.writeln( '<option value="schedules/17late.pdf">17 Late</option>' );
document.writeln( '<option value="schedules/20full.pdf">20 Full</option>' );
document.writeln( '<option value="schedules/21early.pdf">21 Early</option>' );
document.writeln( '<option value="schedules/21late.pdf">21 Late</option>' );
document.writeln( '<option value="schedules/22full.pdf">22 Full</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


