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="">Chamber Business</option>' );
document.writeln( '<option value="newsletter/Sept09/secrets.html">Chamber Secrets</option>' );
document.writeln( '<option value="newsletter/Sept09/state_fair_booth.html">State Fair Booth wins again</option>' );
document.writeln( '<option value="newsletter/Sept09/bpy.html">Business Person of the Year</option>' );
document.writeln( '<option value="newsletter/Sept09/county_fair_volunteers.html">County Fair Volunteers</option>' );
document.writeln( '<option value="newsletter/Sept09/m2m_new.html">New M2M Participant</option>' );

document.writeln( '</select>' );
document.writeln( '</form>' );


