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="babyboy_entire.htm">Its a Boy!</option>' );
document.writeln( '<option value="babygirl_entire.htm">Its a Girl!</option>' );
document.writeln( '<option value="babytwins.htm">Its Twins!</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
