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://iainstitute.org/' ;
  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="">Language Sites...</option>' );
document.writeln( '<option value="cn/">Chinese</option>' );
document.writeln( '<option value="da/">Dansk</option>' );
document.writeln( '<option value="de/">Deutsch</option>' );
document.writeln( '<option value="en/">English</option>' );
document.writeln( '<option value="es/">Espa&ntilde;ol</option>' );
document.writeln( '<option value="fr/">Fran&ccedil;ais</option>' );
document.writeln( '<option value="hu/">Hungarian</option>' );
document.writeln( '<option value="it/">Italiano</option>' );
document.writeln( '<option value="ja/">Japanese</option>' );
document.writeln( '<option value="nl/">Nederlands</option>' );
document.writeln( '<option value="pt/">Portugu&ecirc;s</option>' );

document.writeln( '</select>' );
document.writeln( '</form>' );
