function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.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 = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="index.html">Start Here</option>' );
document.writeln( '<option value="about.html">ABOUT US</option>' );
document.writeln( '<option value="dishy_designers.html">DISHY DESIGNER</option>' );
document.writeln( '<option value="products.html">PRODUCTS</option>' );
document.writeln( '<option value="measure.html">MEASUREMENTS</option>' );
document.writeln( '<option value="purchase.html">PURCHASE</option>' );
document.writeln( '<option value="retailers.html">RETAILERS</option>' );
document.writeln( '<option value="care.html">CARE INFORMATION</option>' );
document.writeln( '<option value="terms.html">TERMS & CONDITIONS</option>' );
document.writeln( '<option value="terms2.html">DELIVERIES</option>' );
document.writeln( '<option value="contact.html">CONTACT US</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

