function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://fhgd.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="wentworth.htm"> select portfolio</option>' );
document.writeln( '<option value="wentworth.htm">1. Wentworth Garden</option>' );
document.writeln( '<option value="roof.htm">2. Roof Garden</option>' );
document.writeln( '<option value="sculpture.htm">3. Sculpture in the Garden</option>' );
document.writeln( '<option value="modern.htm">4. Modern Arts & Craft</option>' );
document.writeln( '<option value="cottage.htm">5. Cottage Garden</option>' );
document.writeln( '<option value="elegant.htm">6.Elegant Modern Garden</option>' );
document.writeln( '<option value="woodland.htm">7. Woodland Water Garden</option>' );
document.writeln( '<option value="courtyard.htm">8. Courtyard Garden</option>' );
document.writeln( '<option value="walled.htm">9. Walled Garden</option>' );
document.writeln( '<option value="home.htm">Back to Home Page</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

