function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.1
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://thepiratefleet.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="psu1.shtml">-Select Page-</option>' );
document.writeln( '<option value="psu1.shtml">1. Intro</option>' );
document.writeln( '<option value="psu2.shtml">2. Testbed</option>' );
document.writeln( '<option value="psu3.shtml">3. Results</option>' );
document.writeln( '<option value="psu4.shtml">4. Conclusion</option>' );

//document.writeln( '<option value=""></option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
