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>Communion Styles</option>' );
document.writeln( '<option>-------------------</option>' );
document.writeln( '<option value="communion.htm">Communion Main</option>' );
document.writeln( '<option value="communion_entire.htm">Communion Styles</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
