function menu_goto( menuform )
{
  var baseurl = 'http://www.elveerosenberg.com/gampel/catalog/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="catalog" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="" selected="selected"> Menu</option>' );
document.writeln( '<option value="gampel/catalog/findings.html">Findings I</option>' );
document.writeln( '<option value="gampel/catalog/findings2.html">Findings II</option>' );
document.writeln( '<option value="gampel/catalog/findings3.html">Findings III</option>' );
document.writeln( '<option value="gampel/catalog/magneticclasps.html" style="background-color:#99FFFF;">Magnetic Clasps *NEW!*</option>' );
document.writeln( '<option value="gampel/catalog/wiretigertail.html">Wire and Tiger Tail</option>' );
document.writeln( '<option value="gampel/catalog/needlesandstringing.html">Needles and Stringing Materials</option>' );
document.writeln( '<option value="gampel/catalog/elasticsatincord.html">Elastic and Satin Cord</option>' );
document.writeln( '<option value="gampel/catalog/platedchain.html">Nickel and Gold Plated Chain I</option>' );
document.writeln( '<option value="gampel/catalog/platedchain2.html">Nickel and Gold Plated Chain II</option>' );
document.writeln( '<option value="gampel/catalog/pliers.html">Pliers</option>' );
document.writeln( '<option value="gampel/catalog/cutters.html">Cutters</option>' );
document.writeln( '<option value="gampel/catalog/beads.html">Beads I</option>' );
document.writeln( '<option value="gampel/catalog/beads2.html">Beads II</option>' );
document.writeln( '<option value="gampel/catalog/accandbags.html">Accessories and Poly Bags</option>' );
document.writeln( '<option value="gampel/catalog/accandbooks.html">Accessories and Books</option>' );
document.writeln( '<option value="gampel/catalog/glue.html">Glue and Adhesives</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

