function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1>');
document.write('<option value="#">Quick Navigation Menu');
document.write('<option value="alpha.htm">Alphabetical List');
document.write('<option value="cds.htm">Audio CDs');
document.write('<option value="cantatas.htm">Cantatas');
document.write('<option value="children.htm">Children');
document.write('<option value="choral.htm">Choral');
document.write('<option value="christmas.htm">Christmas');
document.write('<option value="congregation.htm">Congregation');
document.write('<option value="easter.htm">Easter');
document.write('<option value="allyse.htm">Featured Vocalist of the Month');
document.write('<option value="instrumental.htm">Instrumental');
document.write('<option value="links.htm">Links');
document.write('<option value="men.htm">Men');
document.write('<option value="mp3playlists.htm">MP3 Playlists');
document.write('<option value="performers.htm">Performers Featured on This Site');
document.write('<option value="recordings.htm">Recordings');
document.write('<option value="resources.htm">Resources');
document.write('<option value="cds.htm#sitecd">Site on CDROM');
document.write('<option value="soloduet.htm">Solo/Duet');
document.write('<option value="staffpaper.htm">Staff Paper');
document.write('<option value="topics.htm">Topics');
document.write('<option value="translations.htm">Translations');
document.write('<option value="women.htm">Women');
document.write('<option value="youtubesightings.htm">YouTube Sightings');
document.write('<option value="youngwomen.htm">Young Women');
document.write('<option value="about.htm">About the composer...');


document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');