function menu_goto( menuform )
{
  var baseurl = 'http://' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="sitegoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">Powered by Cyber Diver</option>' );
document.writeln( '<option value="www.cdnn.info">CDNN</option>' );
document.writeln( '<option value="www.scubalinx.com">ScubaLinx</option>' );
document.writeln( '<option value="www.scubapoll.com">Scuba Poll</option>' );
document.writeln( '<option value="www.scuba-search.com">Scuba Search</option>' );
document.writeln( '<option value="www.scuba-forum.com">Scuba Forum</option>' );
document.writeln( '<option value="www.cyber-diver.com">Cyber Diver</option>' );
document.writeln( '<option value="www.j-diver.com">jDiver</option>' );
document.writeln( '<option value="www.in-depth.net">In Depth</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );