function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://heretics.bravehost.com/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="mp.html">Meet the poets</option>' );
document.writeln( '<option value="gh.html">Guy Kettelhack</option>' );
document.writeln( '<option value="ma.html">Mark Allinson</option>' );
document.writeln( '<option value="asp.html">Arthur Seeley</option>' );
document.writeln( '<option value="rbc.html">Robert Brown</option>' );
document.writeln( '<option value="pw.html">Paul White</option>' );
document.writeln( '<option value="jz.html">Jody Azzouni</option>' );
document.writeln( '<option value="aw.html">Alex Williams </option>' );
document.writeln( '<option value="jp.html">J.M.Pengelly</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

