function menu_goto( menuform )
{
  var baseurl = 'http://smokehole.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="lodginggoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="Lodging.html">Lodging Choices</option>' );
document.writeln( '<option value="honeymoon.html">Honeymoon Log Cabins</option>' );
document.writeln( '<option value="familylog.html">Family Log Cabins</option>' );
document.writeln( '<option value="logmotel.html">Log Motel</option>' );
document.writeln( '<option value="cottage.html">Cottages</option>' );
document.writeln( '<option value="family.html">Family Lodging</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

									
