function menu_goto( menuform )
{
  var baseurl = 'http://www.fivestartrophies.co.uk/' ;
  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="">please select a category</option>' );
document.writeln( '<option value="home.html">HOMEPAGE</option>' );
document.writeln( '<option value="engraving.html">ENGRAVING</option>' );
document.writeln( '<option value="ordering.html">ORDERING</option>' );
document.writeln( '<option value="delivery.html">DELIVERY</option>' );
document.writeln( '<option value="brochure.html">REQUEST BROCHURE</option>' );
document.writeln( '<option value="FAQ.html">FAQ</option>' );
document.writeln( '<option value="terms.html">TERMS & CONDITIONS</option>' );
document.writeln( '<option value="contact.html">CONTACT US</option>' );
document.writeln( '<option value="">--------</option>' );
document.writeln( '<option value="FB01.html">Football Trophies</option>' );
document.writeln( '<option value="GF01.html">Golf Trophies</option>' );
document.writeln( '<option value="RU01.html">Rugby Trophies</option>' );
document.writeln( '<option value="ME01.html">Medals (all)</option>' );
document.writeln( '<option value="OT01.html">Other Sports</option>' );
document.writeln( '<option value="CU01.html">Cups & Shields</option>' );
document.writeln( '<option value="GL01.html">Glass Awards</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


