
function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.1
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://www.envaxproducts.com/' ;
  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="">Products</option>' );
document.writeln( '<option value="EV-10series.html">EV Series</option>' );
document.writeln( '<option value="VCseries.html">VC Series</option>' );
document.writeln( '<option value="VEseries.html">VE Series</option>' );
document.writeln( '<option value="VMseries.html">VM Series</option>' );
document.writeln( '<option value="RVCseries.html">RVC Series</option>' );
document.writeln( '<option value="VacuDip.html">VacuDip Series</option>' );
document.writeln( '<option value="Custom.html">Custom Build</option>' );
document.writeln( '<option value="OptionalEquipment.html">Optional Equipment</option>' );
document.writeln( '<option value="Specifications.html">Secifications</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );