function menu_goto( menuform )
{
  var baseurl = 'http://www.elveerosenberg.com/pearls/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="pearls/catalog/cotton.html" style="background-color:#99FFFF;">Cotton Pearls *NEW!*</option>' );
document.writeln( '<option value="pearls/catalog/metalliccotton.html" style="background-color:#99FFFF;">Metallic Color Cotton Pearls *NEW!*</option>' );
document.writeln( '<option value="pearls/catalog/roundglass.html" style="background-color:#99FFFF;">Round Glass Pearls *NEW!*</option>' );
document.writeln( '<option value="pearls/catalog/fancyglass.html" style="background-color:#99FFFF;">Fancy Glass Pearls *NEW!*</option>' );
document.writeln( '<option value="pearls/catalog/glasspearls.html">Glass Pearls I</option>' );
document.writeln( '<option value="pearls/catalog/glasspearls2.html">Glass Pearls II</option>' );
document.writeln( '<option value="pearls/catalog/fancysimlustre.html">Fancy Simulated Lustre Pearls</option>' );
document.writeln( '<option value="pearls/catalog/simlustre.html">Simulated Lustre Pearls</option>' );
document.writeln( '<option value="pearls/catalog/simcultura.html">Simulated Cultura Pearls</option>' );
document.writeln( '<option value="pearls/catalog/noholesimcabochons.html">No Hole Simulated Pearls and Cabochons</option>' );
document.writeln( '<option value="pearls/catalog/simgunmetal.html">Simulated Gunmetal Pearls</option>' );
document.writeln( '<option value="pearls/catalog/botanica.html" style="background-color:#99FFFF;">Botanica *NEW!*</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

