function menu_goto( menuform )
{

  var baseurl = 'http://www.elveerosenberg.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="quicknav" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">View Categories</option>' );
document.writeln( '<option value="beads/">Beads</option>' );
document.writeln( '<option value="sterling/">Sterling Silver</option>' );
document.writeln( '<option value="crystal/">Swarovski­® Crystal</option>' );
document.writeln( '<option value="gampel/">Tools and Supplies</option>' );
document.writeln( '<option value="pearls/">Pearls</option>' );
document.writeln( '<option value="sign/">Request a Catalog</option>' );
document.writeln( '<option value="order/">Order</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

