// 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="Fish" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">Please Select</option>' );
document.writeln( '<option value="f_001.html">Arabian Angelfish</option>' );
document.writeln( '<option value="f_002.html">Axilspot Hogfish</option>' );
document.writeln( '<option value="f_003.html">Arabian (Bluestripe) Snapper</option>' );
document.writeln( '<option value="f_004.html">Bandcheek Wrasse</option>' );
document.writeln( '<option value="f_005.html">Banded Dascyllus</option>' );
document.writeln( '<option value="f_006.html">Barracuda</option>' );
document.writeln( '<option value="f_007.html">Bigeye Trevally</option>' );
document.writeln( '<option value="f_008.html">Blackback Butterflyfish</option>' );
document.writeln( '<option value="f_009.html">Blackbeasted Pipefish</option>' );
document.writeln( '<option value="f_010.html">Blackside Howkfish</option>' );
document.writeln( '<option value="f_011.html">Blackspotted Grunt</option>' );
document.writeln( '<option value="f_012.html">Blacktail Shark</option>' );
document.writeln( '<option value="f_013.html">Blacktip Grouper</option>' );
document.writeln( '<option value="f_014.html">Blotcheye Soldierfish</option>' );
document.writeln( '<option value="f_015.html">Blue Triggerfish</option>' );
document.writeln( '<option value="f_016.html">Bluefin Trevally</option>' );
document.writeln( '<option value="f_017.html">Bluegreen Chromis</option>' );
document.writeln( '<option value="f_018.html">Blue Spine Unicornfish</option>' );
document.writeln( '<option value="f_019.html">Bumphead Parrotfish</option>' );
document.writeln( '<option value="f_020.html">Cardinal Fish</option>' );
document.writeln( '<option value="f_021.html">Checkerboard Wrasse</option>' );
document.writeln( '<option value="f_022.html">Chevron Butterflyfish</option>' );
document.writeln( '<option value="f_023.html">Chisel Tooth Wrasse</option>' );
document.writeln( '<option value="f_024.html">Circular Batfish</option>' );
document.writeln( '<option value="f_025.html">Cleaner Wrassse</option>' );
document.writeln( '<option value="f_026.html">Clearfin Lionfish</option>' );
document.writeln( '<option value="f_027.html">Clown Coris</option>' );
document.writeln( '<option value="f_028.html">Common Lizardfish</option>' );
document.writeln( '<option value="f_029.html">Coral Grouper</option>' );
document.writeln( '<option value="f_030.html">Crown Butterflyfish</option>' );
document.writeln( '<option value="f_031.html">Cube Trunkfish</option>' );
document.writeln( '<option value="f_032.html">Dianas Hogfish</option>' );
document.writeln( '<option value="f_033.html">Domino</option>' );
document.writeln( '<option value="f_034.html">Eagle Rays</option>' );
document.writeln( '<option value="f_035.html">Electric Rays</option>' );
document.writeln( '<option value="f_036.html">Emperor Angelefish</option>' );
document.writeln( '<option value="f_037.html">Exquisite Butterflyfish</option>' );
document.writeln( '<option value="f_038.html">Flathead</option>' );
document.writeln( '<option value="f_039.html">Forsskals Coatfish</option>' );
document.writeln( '<option value="f_040.html">Frogfish</option>' );
document.writeln( '<option value="f_041.html">Fusiliers</option>' );
document.writeln( '<option value="f_042.html">Giant Moray</option>' );
document.writeln( '<option value="f_043.html">Gided Pipefish</option>' );
document.writeln( '<option value="f_044.html">Goggle Eye</option>' );
document.writeln( '<option value="f_045.html">Golden Cardinalfish</option>' );
document.writeln( '<option value="f_046.html">Goldfish or Weackfish</option>' );
document.writeln( '<option value="f_047.html">Greasy Grouper</option>' );
document.writeln( '<option value="f_048.html">Grey Moray</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


