function menu_goto( menuform )
{
  // Menu navigation script created BY HAND!
  // This is NOT an HTML script, nor can you use HTML features
  // in this text document! PLEASE don't try!
  var baseurl = 'http://www.hydraulic.net/' ;
  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.html">Choose an option</option>' );
document.writeln( '<option value="stock_pumps.html">Order a stock pump ASAP</option>' );
document.writeln( '<option value="bto_pumps.html">Have a pump built to my specifications</option>' );
document.writeln( '<option value="custom_pumps.html">Have a custom pump engineered and built</option>' );
document.writeln( '<option value="pistons.html">Order a Dynex Piston Pump/Motor</option>' );
document.writeln( '<option value="products.html">View our products</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


