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 selected>Sunday Gospel');
document.write('<option value="gospel_reflections.htm">Easter Sunday');
document.write('<option value="gospel_palm_sunday.htm">Palm Sunday');
document.write('<option value="gospel_5thSunday.htm">5th Sunday of Lent');
document.write('<option value="gospel_4thSunday.htm">4th Sunday of Lent');
document.write('<option value="gospel_3rdSunday.htm">3rd Sunday of Lent');
document.write('<option value="gospel_2ndSunday.htm">2nd Sunday of Lent');
document.write('<option value="gospel_1stSunday.htm">1st Sunday of Lent');
document.write('<option value="gospel_4thOrdinary.htm">4th Sunday Ordinary Time');
document.write('<option value="gospel_012607.htm">3rd Sunday Ordinary Time');
document.write('<option value="gospel_santonino.htm">Feast of the Santo Niņo');
document.write('<option value="gospel_012007.htm">The Baptism of the Lord');
document.write('<option value="gospel_011307.htm">Feast of the Epiphany');
document.write('<option value="gospel_013007.htm">Feast of the Holy Family');
document.write('<option value="gospel_122507.htm">Christmas Day');
document.write('<option value="gospel_122207.htm">Fourth Sunday of Advent');
document.write('<option value="gospel_121507.htm">Third Sunday of Advent');
document.write('<option value="gospel_120807.htm">Second Sunday of Advent');
document.write('<option value="gospel_120107.htm">First Sunday of Advent');
document.write('</select>');
document.write(' ');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');