function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.amadorcountychamber.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="">Quick Links</option>' );
document.writeln( '<option value="directors.html">Board of Directors</option>' );
document.writeln( '<option value="memberdirectory.html">Member Directory</option>' );
document.writeln( '<option value="mixers.html">Chamber Mixers</option>' );
document.writeln( '<option value="Members/memberapp.html">Membership Application</option>' );
document.writeln( '<option value="photogallery.html">Photo Gallery</option>' );
document.writeln( '<option value="Members/eventlisting.html">List Your Event</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


