function menu_goto( menuform )
{
  var baseurl = 'http://www.elveerosenberg.com/crystal/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="crystal/catalog/cryfindings.html">SwarovskiŽ Crystal Findings</option>' );
document.writeln( '<option value="crystal/catalog/rhinestonechain.html">SwarovskiŽ Rhinestone Chain</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

