function menu_weeds( 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.kowiecatchmentcampaign.org.za/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_weeds(this.form)">' );
document.writeln( '<option value="index.html">Updates</option>' );

document.writeln( '<option value="weeds_articles.html">Useful Articles</option>' );
document.writeln( '<option value="Category1.html">Category 1</option>' );
document.writeln( '<option value="Category2.html">Category 2</option>' );
document.writeln( '<option value="Name_The_Weed.html">Name These</option>' );
document.writeln( '<option value="Remove_Weeds.html">Remove</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


