function menu_goto( menuform )
{
  var baseurl = 'http://www.orlandoretreat.com/' ;
  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="#">Select A Room...</option>' );
document.writeln( '<option value="the-beautiful-orlando-retreat">General Pics</option>' );
document.writeln( '<option value="great-room">Great Room</option>' );
document.writeln( '<option value="kitchen">Kitchen</option>' );
document.writeln( '<option value="dining-room">Dining Room</option>' );
document.writeln( '<option value="pool-spa-lanai">Pool, Spa, Lanai</option>' );
document.writeln( '<option value="master-suite-1">Master Suite 1</option>' );
document.writeln( '<option value="master-suite-2">Master Suite 2</option>' );
document.writeln( '<option value="queen-bedroom">Queen Bedroom</option>' );
document.writeln( '<option value="pool-bathroom">Pool Bathroom</option>' );
document.writeln( '<option value="arcade-game-room">Arcade & Game Room</option>' );
document.writeln( '<option value="cowboy-room-upstairs">Cowboy Room (upstairs)</option>' );
document.writeln( '<option value="princess-room-upstairs">Princess Room (upstairs)</option>' );
document.writeln( '<option value="modern-teen-room-upstairs">Teen Room (upstairs)</option>' );
document.writeln( '<option value="kids-bathroom-upstairs">Kids Bathroom (upstairs)</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

