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 = '' ;
  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="">Select</option>' );
document.writeln( '<option value="http://www.cog.ca/chapters/ottawa/">Home</option>' );
document.writeln( '<option value="http://www.cog.ca/chapters/ottawa/ottawa-organic-directory">Organic Directory</option>' );
document.writeln( '<option value="http://www.cog.ca/chapters/ottawa/ottawa-chapter-newsletter">Chapter Newsletter</option>' );
document.writeln( '<option value="http://www.cog.ca/our-work/growing-up-organic/guo-ottawa/">GUO Ottawa</option>' );
document.writeln( '<option value="http://www.cog.ca/ottawa/feast_of_fields/index.html">Feast of Fields</option>' );
document.writeln( '<option value="http://www.cog.ca/ottawa/ecofarmday/index.html">Eco Farm Day</option>' );
document.writeln( '<option value="http://www.cog.ca/chapters/ottawa/contact-ottawa-chapter/">Contact Information</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

