function menu_prob( 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 =  newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_prob(this.form)">' );
document.writeln( '<option value="index.html">Updates</option>' );

document.writeln( '<option value="supply.html">Supply</option>' );
document.writeln( '<option value="WaterQuality.html">Quality</option>' );
document.writeln( '<option value="UpperKowie.html">Catchment</option>' );
document.writeln( '<option value="Sewerage.html">Sewerage</option>' );
document.writeln( '<option value="Rubbish_Dumping.html">Dumping</option>' );
document.writeln( '<option value="hotspot_map.html">Hotspot Map</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

