function menu_prog( 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_prog(this.form)">' );
document.writeln( '<option value="index.html">Updates</option>' );

document.writeln( '<option value="projects.html">General</option>' );
document.writeln( '<option value="champ.html">Champions</option>' );
document.writeln( '<option value="outreach.html">Outreach</option>' );
document.writeln( '<option value="spring.html">Spring</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


