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>Choose a Calendar Type</option>' );
document.writeln( '<option>-------------------</option>' );
document.writeln( '<option value="calendar.htm">Calendar Main</option>' );
document.writeln( '<option value="calendar_artwork_singles_order.htm">Artwork Calendars</option>' );
document.writeln( '<option value="calendar_classic_singles_order.htm">Classic Calendars</option>' );
document.writeln( '<option value="calendar_collage_singles_order.htm">Collage Calendars</option>' );
document.writeln( '<option value="calendar_sline_singles_order.htm">Stream Line Calendars</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
