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 = '' ;
  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="index.asp">Home</option>' );
document.writeln( '<option value="pcafe.html">Product - ProviderCafe</option>' );
document.writeln( '<option value="aboutus.html">About Us</option>' );
document.writeln( '<option value="jobs.html">Job Opportunities</option>' );
document.writeln( '<option value="acsnews.html">ACS News</option>' );
document.writeln( '<option value="contactus.htm">Contact Us</option>' );
document.writeln( '<option selected value="">Site Index</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
