function menu_goto( menuform )
{
var baseurl = '/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    top.location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get" target="top">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="index.htm">Puralife HOME</option>' );
document.writeln( '<option value=""></option>' );
document.writeln( '<option value="water_health/index.htm">Water & Health:</option>' );
document.writeln( '<option value="water_health/contaminants_in_water.htm">- Contaminants in Water</option>' );
document.writeln( '<option value="water_health/chlorine.htm">- Chlorine</option>' );
document.writeln( '<option value="water_health/flouride.htm">- Flouride</option>' );
document.writeln( '<option value="water_health/healthy_living.htm">- Healthy Living</option>' );
document.writeln( '<option value="water_health/cancer_protection.htm">- Cancer Protection</option>' );
document.writeln( '<option value="water_health/aluminium.htm">- Aluminium</option>' );
document.writeln( '<option value="water_health/lead.htm">- Lead</option>' );
document.writeln( '<option value="water_health/parasites.htm">- Parasites</option>' );
document.writeln( '<option value=""></option>' );
document.writeln( '<option value="drinking_water/index.htm">Drinking Water:</option>' );
document.writeln( '<option value="drinking_water/what_to_beware_of.htm">- What to Beware of</option>' );
document.writeln( '<option value="drinking_water/ecovortex.htm">- Ecovortex</option>' );
document.writeln( '<option value="drinking_water/uv_rainwater_systems.htm">- UV Rainwater Systems</option>' );
document.writeln( '<option value="drinking_water/single_stage_systems.htm">- Single Stage Systems</option>' );
document.writeln( '<option value="drinking_water/dual_stage_systems.htm">- Dual Stage Systems</option>' );
document.writeln( '<option value="drinking_water/reverse_osmosis.htm">- Reverse Osmosis</option>' );
document.writeln( '<option value="drinking_water/what_about_minerals.htm">- What About Minerals?</option>' );
document.writeln( '<option value="drinking_water/changing_your_filter.htm">- Changing Your Filter</option>' );
document.writeln( '<option value=""></option>' );
document.writeln( '<option value="whole_house_systems/index.htm">Whole House Systems</option>' );
document.writeln( '<option value="other_products/index.htm">Other Products</option>' );
document.writeln( '<option value="replacement_filters/index.htm">Replacement Filters</option>' );
document.writeln( '<option value="shower_filters/index.htm">Shower Filters</option>' );
document.writeln( '<option value="chillers/index.htm">Chillers</option>' );
document.writeln( '<option value="services/index.htm">Services</option>' );
document.writeln( '<option value="contact_order/index.htm">Contact & Order</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );




