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="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="index.html">Main Menu</option>' );
document.writeln( '<option value="search.html">search</option>' );
document.writeln( '<option value="index.html">home</option>' );
document.writeln( '<option value="lodging.html">lodging</option>' );
document.writeln( '<option value="caverns.html">caverns</option>' );
document.writeln( '<option value="conference.html">conferences</option>' );
document.writeln( '<option value="raves.html">press</option>' );
document.writeln( '<option value="events.html">events</option>' );
document.writeln( '<option value="area.html">surrounding area</option>' );
document.writeln( '<option value="directions.html">directions</option>' );
document.writeln( '<option value="outfitters.html">outfitters</option>' );
document.writeln( '<option value="about.html">about us</option>' );
document.writeln( '<option value="activities.html">activities</option>' );
document.writeln( '<option value="contact.html">contact us</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

