function menu_goto( menuform )
{
  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)" style="font-family:arial; font-size:9pt; color:#000000">' );
document.writeln( '<option value="">Destinations</option>' )
document.writeln( '<option value="http://www.danvillesycamoreinn.com">Danville</option>' );
document.writeln( '<option value="http://www.humboldtbayinn.com">Eureka</option>' );
document.writeln( '<option value="http://www.gardencourtinn.com">Fremont</option>' );
document.writeln( '<option value="http://www.humboldthouseinn.com/">Garberville</option>' );
document.writeln( '<option value="http://www.bluesailinn.com">Morro Bay</option>' );
document.writeln( '<option value="http://www.thehilltopinn.com">Redding</option>' );
document.writeln( '<option value="http://www.thesutterhouse.com">Sacramento</option>' );
document.writeln( '<option value="http://www.wharfinn.com">SF Fisherman&#8217;s Wharf</option>' );
document.writeln( '<option value="http://www.motelcaprisfo.com">SF Marina District</option>' );
document.writeln( '<option value="http://www.royaloakhotel.com">San Luis Obispo</option>' );
document.writeln( '<option value="http://www.beachsideinnsantabarbara.com">Santa Barbara</option>' );
document.writeln( '<option value="http://www.thegardeninn.com">Santa Rosa</option>' );
document.writeln( '<option value="http://www.granzellasinn.com">Williams</option>' );
document.writeln( '<option value="http://www.yosemitegatewayinn.com">Yosemite</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );