function menu_goto( menuform )

{

  // Generated by thesitewizard Navigation Menu Wizard 2.3.1
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!

  selecteditem = menuform.url.selectedIndex ;

  newurl = menuform.url.options[ selecteditem ].value ;
  
  var baseurl = '' ;
  
  // if (newurl != 'http://www.myspace.com/immortalsoulband')
  //{
  //  var baseurl = 'http://immortalsoulband.com/' ;
  //	}
  //else
  //{
  //  var baseurl = '' ;
  //}
  
  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="">Navigation Menu</option>' );

document.writeln( '<option value="index.html">Home</option>' );

document.writeln( '<option value="http://www.myspace.com/immortalsoulband">MySpace Page</option>' );

document.writeln( '<option value="interviews.html">Articles & Interviews</option>' );

document.writeln( '<option value="bio.html">Band Bio</option>' );

document.writeln( '<option value="contact.html">Contact</option>' );

document.writeln( '<option value="links.html">Links</option>' );

document.writeln( '<option value="gallery.html">Photo Gallery</option>' );

document.writeln( '<option value="pressreleases.html">Press Releases</option>' );

document.writeln( '<option value="merch.html">Store </option>' );

document.writeln( '<option value="http://www.silentsky.net">Silent Sky Studios</option>' );

document.writeln( '</select>' );

document.writeln( '</form>' );

