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!
  var baseurl = '' ;
  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="movie.htm">Please Select</option>' );
document.writeln( '<option value="movie.htm">Suite Bedroom</option>' );
document.writeln( '<option value="movie2.htm">Suite Lounge</option>' );
document.writeln( '<option value="movie3.htm">Suite Bathroom</option>' );
document.writeln( '<option value="movie4.htm">Apartment Bedroom</option>' );
document.writeln( '<option value="movie5.htm">Apartment Lounge</option>' );
document.writeln( '<option value="movie6.htm">Pool</option>' );
document.writeln( '<option value="movie7.htm">Music Room</option>' );
document.writeln( '<option value="movie8.htm">Hallway</option>' );
document.writeln( '<option value="movie9.htm">Suite 7A</option>' );
document.writeln( '<option value="movie10.htm">Suite 5</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


