// JavaScript Document
function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://nexus.mysticor.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.htm">Home</option>' );
document.writeln( '<option value="bb/viewtopic.php?f=19&t=16">Solinia Nexus</option>' );
document.writeln( '<option value="bb/viewtopic.php?f=19&t=19">Harry Potter</option>' );
document.writeln( '<option value="bb/viewtopic.php?f=19&t=21">Pokemon</option>' );
document.writeln( '<option value="bb/viewtopic.php?f=19&t=26">Power Rangers</option>' );
document.writeln( '<option value="bb/viewtopic.php?f=19&t=30">Sailor Moon</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


