function menu_goto( menuform )
{
  var baseurl = '/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="menu" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option>VIEW ALL DESIGNS</option>' );
document.writeln( '<option>--------------------------------</option>' );
document.writeln( '<option value="wedflowers_entire.htm">Flower</option>' );
document.writeln( '<option value="wedfun_main_entire.htm">Fun</option>' );
document.writeln( '<option value="wedphoto_entire.htm">Photo</option>' );
document.writeln( '<option value="wedchild.htm">Childhood</option>' );
document.writeln( '<option value="wedbeach_entire.htm">Beach</option>' );
document.writeln( '<option value="wedlasvegas_entire.htm">Las Vegas</option>' );
document.writeln( '<option value="wedbooth_entire.htm">Photo Booth</option>' );
document.writeln( '<option value="wedcalendar.htm">Calendar</option>' );
document.writeln( '<option value="vineyard_save_the_date_magnets_entire.htm">Wine Country</option>' );
document.writeln( '<option value="seasons_entire.htm">Seasons</option>' );
document.writeln( '<option value="textured_patterns.htm">Textured Patterns</option>' );
document.writeln( '<option value="image_gallery.htm"><u>FREE</U> Image Gallery</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
