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">Fifth Sunday in Ordinary Time-B');
document.write('<option value="gospel_jan29.html">Fourth Sunday in Ordinary Time-B');
document.write('<option value="gospel_jan22.html">Third Sunday in Ordinary Time-B');
document.write('<option value="gospel_jan15.html">Feast of the Santo Niño');
document.write('<option value="gospel_jan8.html">Solemnity of the Lord’s Epiphany-B');
document.write('<option value="gospel_jan1.html">Solemnity of Mary, Mother of God');
document.write('<option value="gospel_dec25.html">Christmas Day');
document.write('<option value="gospel_dec18.html">Fourth Sunday of Advent- B');
document.write('<option value="gospel_dec11.html">Third Sunday of Advent- B');
document.write('<option value="gospel_dec4.html">Second Sunday of Advent- B');
document.write('<option value="gospel_nov27.htm">First Sunday of Advent- B');
document.write('</select>');
document.write(' ');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');
