// JavaScript Document

function menu_goto( menuform )
{
  var baseurl = '' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="Others" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">Please Select</option>' );
document.writeln( '<option value="o_001.html">Bottlenosed dolphin</option>' );
document.writeln( '<option value="o_002.html">Cleaner shrimp</option>' );
document.writeln( '<option value="o_003.html">Grampus</option>' );
document.writeln( '<option value="o_004.html">Imbricated turtles</option>' );
document.writeln( '<option value="o_005.html">Moon Jellyfish</option>' );
document.writeln( '<option value="o_006.html">Painted Crayfish</option>' );
document.writeln( '<option value="o_007.html">Spotted Hermit Crab</option>' );
document.writeln( '<option value="o_008.html">Striped Dolphin</option>' );
document.writeln( '<option value="o_009.html">Upsidedown Jellyfish</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


