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.adeptcarpentry.net/' ;
  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_goto(this.form)">' );
document.writeln( '<option value="index_files/ProductList.htm">Product List</option>' );
document.writeln( '<option value="index_files/Flooring.htm">FLOORING</option>' );
document.writeln( '<option value="index_files/SolidHardwoodFlooring.htm">Solid Hardwood Flooring</option>' );
document.writeln( '<option value="index_files/EngineeredFlooring.htm">Engineered Flooring</option>' );
document.writeln( '<option value="index_files/LaminateFlooring.htm">Laminate Flooring</option>' );
document.writeln( '<option value="index_files/Kitchens.htm">KITCHENS</option>' );
document.writeln( '<option value="index_files/RealWoodKitchens.htm">Real Wood Kitchens</option>' );
document.writeln( '<option value="index_files/TimberEffectKitchens.htm">Timber Effect Kitchens</option>' );
document.writeln( '<option value="index_files/LaminateKitchens.htm">Laminate Kitchens</option>' );
document.writeln( '<option value="index_files/Doors.htm">DOORS</option>' );
document.writeln( '<option value="index_files/ChildrensFurniture.htm">CHILDRENS FURNITURE</option>' );
document.writeln( '<option value="index_files/Awnings.htm">AWNINGS</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

