// WEB PAGE CHURCH YEAR EVENT  (Last updated: December 2005)
// FILENAME: web_page_church_year_event.js) 

// Copyright (C) 1999-2008 by Gregg L. DesElms (gregg@greggdeselms.com) (1-877-383-5148)
// All rights reserved.  Use by permission only.  (You can use it, but just ask first!)


//                IMPORTANT ANNUAL UPDATE INFORMATION and RECOMMENDATION
// 
// This script will only work for a specific three-year period, and will then expire.
// This version will work from November of 2005 through November of 2008.  The next
// update should be December of 2006, which will then take this file to November 2009.
// As each church year (Year A, Year B, etc.) ends, this script must be updated for the
// next time that that same year (A, B or C) rolls around again in three years.  It's 
// easiest to do this as the to-be-updated year (A, B or C) ends... which would be in 
// early December of each year, just after the SEASON AFTER PENTECOST ends.  If you don't 
// do that update each year, then this script may work okay for the next two years, but it
// then would be inaccurate when next the year that should have been updated rolls around  
// in two years.  See the notes at the beginning of the CHURCH YEAR section for details.
//
// WHEN YOU UPDATE, REMEMBER TO UPDATE THE DATE-SPECIFIC TEXT IN THE ABOVE PARAGRAPH!



// BEGIN


// SET FONT CHARACTERISICS
document.write('<SPAN STYLE="Font-Size : 8pt"><FONT COLOR="gray" FACE="Verdana, Arial, Helvetica, Geneva, sans serif">')


// GET MONTH/DAY/DATE/YEAR PARTS FROM SITE-VISITOR'S OWN COMPUTER
 calendar = new Date();
 day = calendar.getDay();
 month = calendar.getMonth();
 date = calendar.getDate();
 year = calendar.getYear();


// IMPORTANT:  Remember that, throughout, day-of-week and month numbering begins at zero, not one.
// (i.e., Sunday = 0, Monday = 1, Tuesday = 2, etc.) (January = 0, February = 1, March = 2, etc.)


// CHURCH YEAR (variable) based on the REVISED COMMON LECTIONARY at  http://divinity.library.vanderbilt.edu/lectionary/
// Covers Advent through the Season After Pentecost for YEAR B (2005/2006), YEAR C (2006/2007), and YEAR A (2007/2008)
// MUST BE UPDATED for YEAR B in DECEMBER 2006, then these lines must also be updated to reflect the new version.

// Advent - Year A
 if ((year == 2007) && (month == 11) && (date > 1) && (date < 24)) document.write("<br><br><b>Church Season:</b> Advent");
 if ((year == 2007) && (month == 11) && (date == 2)) document.write("<br><b>Day:</b> First Sunday in Advent");
 if ((year == 2007) && (month == 11) && (date == 9)) document.write("<br><b>Day:</b> Second Sunday in Advent");
 if ((year == 2007) && (month == 11) && (date == 16)) document.write("<br><b>Day:</b> Third Sunday in Advent");
 if ((year == 2007) && (month == 11) && (date == 23)) document.write("<br><b>Day:</b> Fourth Sunday in Advent");
// Advent - Year B
 if ((year == 2005) && (month == 10) && (date > 26) && (date < 31)) document.write("<br><br><b>Church Season:</b> Advent");
 if ((year == 2005) && (month == 11) && (date > 1) && (date < 24)) document.write("<br><br><b>Church Season:</b> Advent");
 if ((year == 2005) && (month == 11) && (date == 2)) document.write("<br><b>Day:</b> First Sunday in Advent");
 if ((year == 2005) && (month == 11) && (date == 9)) document.write("<br><b>Day:</b> Second Sunday in Advent");
 if ((year == 2005) && (month == 11) && (date == 16)) document.write("<br><b>Day:</b> Third Sunday in Advent");
 if ((year == 2005) && (month == 11) && (date == 23)) document.write("<br><b>Day:</b> Fourth Sunday in Advent");
// Advent - Year C
 if ((year == 2006) && (month == 11) && (date > 2) && (date < 25)) document.write("<br><br><b>Church Season:</b> Advent");
 if ((year == 2006) && (month == 11) && (date == 3)) document.write("<br><b>Day:</b> First Sunday in Advent");
 if ((year == 2006) && (month == 11) && (date == 10)) document.write("<br><b>Day:</b> Second Sunday in Advent");
 if ((year == 2006) && (month == 11) && (date == 17)) document.write("<br><b>Day:</b> Third Sunday in Advent");
 if ((year == 2006) && (month == 11) && (date == 24)) document.write("<br><b>Day:</b> Fourth Sunday in Advent");

// Christmas - YEAR A
 if ((year == 2007) && (month == 11) && (date > 23) && (date < 32)) document.write("<br><br><b>Church Season:</b> Christmas");
 if ((year == 2008) && (month == 0) && (date > 0) && (date < 6)) document.write("<br><br><b>Church Season:</b> Christmas");
 if ((year == 2007) && (month == 11) && (date == 24)) document.write("<br>It's Christmas Eve.  Merry Christmas!");
 if ((year == 2007) && (month == 11) && (date == 25)) document.write("<br>It's Christmas Day.  Merry Christmas!");
 if ((year == 2007) && (month == 11) && (date == 30)) document.write("<br><b>Day:</b> First Sunday After Christmas");
// Christmas - YEAR B 
 if ((year == 2005) && (month == 11) && (date > 23) && (date < 32)) document.write("<br><br><b>Church Season:</b> Christmas");
 if ((year == 2006) && (month == 0) && (date > 0) && (date < 6)) document.write("<br><br><b>Church Season:</b> Christmas");
 if ((year == 2005) && (month == 11) && (date == 24)) document.write("<br>It's Christmas Eve.  Merry Christmas!");
 if ((year == 2005) && (month == 11) && (date == 25)) document.write("<br>It's Christmas Day.  Merry Christmas!");
 if ((year == 2006) && (month == 0) && (date == 1)) document.write("<br><b>Day:</b> First Sunday After Christmas");
// Christmas - YEAR C
 if ((year == 2006) && (month == 11) && (date > 23) && (date < 32)) document.write("<br><br><b>Church Season:</b> Christmas");
 if ((year == 2007) && (month == 0) && (date > 0) && (date < 6)) document.write("<br><br><b>Church Season:</b> Christmas");
 if ((year == 2006) && (month == 11) && (date == 24)) document.write("<br>It's Christmas Eve!  Merry Christmas!");
 if ((year == 2006) && (month == 11) && (date == 25)) document.write("<br>It's Christmas Day.  Merry Christmas!");
 if ((year == 2006) && (month == 11) && (date == 31)) document.write("<br><b>Day:</b> First Sunday After Christmas");

// Ephiphany - YEAR A
 if ((year == 2008) && (month == 0) && (date > 6) && (date < 32)) document.write("<br><br><b>Church Season:</b> Epiphany");
 if ((year == 2008) && (month == 1) && (date > 0) && (date < 6)) document.write("<br><br><b>Church Season:</b> Epiphany");
 if ((year == 2008) && (month == 0) && (date == 6)) document.write("<br><b>Day:</b> The Epiphany of Our Lord");
 if ((year == 2008) && (month == 0) && (date == 13)) document.write("<br><b>Day:</b> Baptism Sunday");
 if ((year == 2008) && (month == 0) && (date == 20)) document.write("<br><b>Day:</b> Second Sunday After Epiphany");
 if ((year == 2008) && (month == 0) && (date == 27)) document.write("<br><b>Day:</b> Third Sunday After Epiphany");
 if ((year == 2008) && (month == 1) && (date == 3)) document.write("<br><b>Day:</b> Transfiguration Sunday");
// Ephiphany - YEAR B 
 if ((year == 2006) && (month == 0) && (date > 6) && (date < 32)) document.write("<br><br><b>Church Season:</b> Epiphany");
 if ((year == 2006) && (month == 1) && (date > 0) && (date < 32)) document.write("<br><br><b>Church Season:</b> Epiphany");
 if ((year == 2006) && (month == 0) && (date == 6)) document.write("<br><b>Day:</b> The Epiphany of Our Lord.");
 if ((year == 2006) && (month == 0) && (date == 8)) document.write("<br><b>Day:</b> Baptism Sunday");
 if ((year == 2006) && (month == 0) && (date == 15)) document.write("<br><b>Day:</b> Second Sunday After Epiphany");
 if ((year == 2006) && (month == 0) && (date == 22)) document.write("<br><b>Day:</b> Third Sunday After Epiphany");
 if ((year == 2006) && (month == 0) && (date == 29)) document.write("<br><b>Day:</b> Fourth Sunday After Epiphany");
 if ((year == 2006) && (month == 1) && (date == 5)) document.write("<br><b>Day:</b> Fifth Sunday After Epiphany");
 if ((year == 2006) && (month == 1) && (date == 12)) document.write("<br><b>Day:</b> Sixth Sunday After Epiphany");
 if ((year == 2006) && (month == 1) && (date == 19)) document.write("<br><b>Day:</b> Seventh Sunday After Epiphany");
 if ((year == 2006) && (month == 1) && (date == 26)) document.write("<br><b>Day:</b> Transfiguration Sunday");
// Ephiphany - YEAR C 
 if ((year == 2007) && (month == 0) && (date > 6) && (date < 32)) document.write("<br><br><b>Church Season:</b> Epiphany");
 if ((year == 2007) && (month == 1) && (date > 0) && (date < 22)) document.write("<br><br><b>Church Season:</b> Epiphany");
 if ((year == 2007) && (month == 0) && (date == 6)) document.write("<br><b>Day:</b> The Epiphany of Our Lord");
 if ((year == 2007) && (month == 0) && (date == 7)) document.write("<br><b>Day:</b> Baptism Sunday");
 if ((year == 2007) && (month == 0) && (date == 14)) document.write("<br><b>Day:</b> Second Sunday After Epiphany");
 if ((year == 2007) && (month == 0) && (date == 22)) document.write("<br><b>Day:</b> Third Sunday After Epiphany");
 if ((year == 2007) && (month == 0) && (date == 28)) document.write("<br><b>Day:</b> Fourth Sunday After Epiphany");
 if ((year == 2007) && (month == 1) && (date == 4)) document.write("<br><b>Day:</b> Fifth Sunday After Epiphany");
 if ((year == 2007) && (month == 1) && (date == 11)) document.write("<br><b>Day:</b> Sixth Sunday After Epiphany");
 if ((year == 2007) && (month == 1) && (date == 18)) document.write("<br><b>Day:</b> Transfiguration Sunday");

// Lent - YEAR A
 if ((year == 2008) && (month == 1) && (date > 5) && (date < 32)) document.write("<br><br><b>Church Season:</b> Lent");
 if ((year == 2008) && (month == 2) && (date > 0) && (date < 17)) document.write("<br><br><b>Church Season:</b> Lent");
 if ((year == 2008) && (month == 1) && (date == 6)) document.write("<br><b>Day:</b> Ash Wednesday");
 if ((year == 2008) && (month == 1) && (date == 10)) document.write("<br><b>Day:</b> First Sunday in Lent");
 if ((year == 2008) && (month == 1) && (date == 17)) document.write("<br><b>Day:</b> Second Sunday in Lent");
 if ((year == 2008) && (month == 1) && (date == 24)) document.write("<br><b>Day:</b> Third Sunday in Lent");
 if ((year == 2008) && (month == 2) && (date == 2)) document.write("<br><b>Day:</b> Fourth Sunday in Lent");
 if ((year == 2008) && (month == 2) && (date == 9)) document.write("<br><b>Day:</b> Fifth Sunday in Lent");
 if ((year == 2008) && (month == 2) && (date == 9)) document.write("<br>The Gift of St. Mary of Egypt");
 if ((year == 2008) && (month == 2) && (date == 16)) document.write("<br><b>Day:</b> Palm Sunday");
// Lent - YEAR B
 if ((year == 2006) && (month == 2) && (date > 0) && (date < 32)) document.write("<br><br><b>Church Season:</b> Lent");
 if ((year == 2006) && (month == 3) && (date > 0) && (date < 10)) document.write("<br><br><b>Church Season:</b> Lent");
 if ((year == 2006) && (month == 2) && (date == 1)) document.write("<br><b>Day:</b> Ash Wednesday");
 if ((year == 2006) && (month == 2) && (date == 5)) document.write("<br><b>Day:</b> First Sunday in Lent");
 if ((year == 2006) && (month == 2) && (date == 12)) document.write("<br><b>Day:</b> Second Sunday in Lent");
 if ((year == 2006) && (month == 2) && (date == 19)) document.write("<br><b>Day:</b> Third Sunday in Lent");
 if ((year == 2006) && (month == 2) && (date == 26)) document.write("<br><b>Day:</b> Fourth Sunday in Lent");
 if ((year == 2006) && (month == 3) && (date == 2)) document.write("<br><b>Day:</b> Fifth Sunday in Lent");
 if ((year == 2006) && (month == 3) && (date == 2)) document.write("<br>The Gift of St. Mary of Egypt");
 if ((year == 2006) && (month == 3) && (date == 9)) document.write("<br><b>Day:</b> Palm Sunday");
// Lent - YEAR C
 if ((year == 2007) && (month == 1) && (date > 20) && (date < 32)) document.write("<br><br><b>Church Season:</b> Lent");
 if ((year == 2007) && (month == 2) && (date > 0) && (date < 32)) document.write("<br><br><b>Church Season:</b> Lent");
 if ((year == 2007) && (month == 3) && (date > 0) && (date < 2)) document.write("<br><b>Church Season:</b> Lent");
 if ((year == 2007) && (month == 1) && (date == 21)) document.write("<br><b>Day:</b> Ash Wednesday");
 if ((year == 2007) && (month == 1) && (date == 25)) document.write("<br><b>Day:</b> First Sunday in Lent");
 if ((year == 2007) && (month == 2) && (date == 4)) document.write("<br><b>Day:</b> Second Sunday in Lent");
 if ((year == 2007) && (month == 2) && (date == 11)) document.write("<br><b>Day:</b> Third Sunday in Lent");
 if ((year == 2007) && (month == 2) && (date == 18)) document.write("<br><b>Day:</b> Fourth Sunday in Lent");
 if ((year == 2007) && (month == 2) && (date == 25)) document.write("<br><b>Day:</b> Fifth Sunday in Lent");
 if ((year == 2007) && (month == 2) && (date == 25)) document.write("<br>The Gift of St. Mary of Egypt");
 if ((year == 2007) && (month == 3) && (date == 1)) document.write("<br><b>Day:</b> Palm Sunday");

// Holy Week - YEAR A
 if ((year == 2008) && (month == 2) && (date > 16) && (date < 22)) document.write("<br><br><b>Church Season:</b> Holy Week");
 if ((year == 2008) && (month == 2) && (date == 20)) document.write("<br><b>Day:</b> Maundy Thursday");
 if ((year == 2008) && (month == 2) && (date == 21)) document.write("<br><b>Day:</b> Good Friday");
 if ((year == 2008) && (month == 2) && (date == 22)) document.write("<br><b>Day:</b> Holy Saturday");
// Holy Week - YEAR B
 if ((year == 2006) && (month == 3) && (date > 9) && (date < 16)) document.write("<br><br><b>Church Season:</b> Holy Week");
 if ((year == 2006) && (month == 3) && (date == 13)) document.write("<br><b>Day:</b> Maundy Thursday");
 if ((year == 2006) && (month == 3) && (date == 14)) document.write("<br><b>Day:</b> Good Friday");
 if ((year == 2006) && (month == 3) && (date == 15)) document.write("<br><b>Day:</b> Holy Saturday");
// Holy Week - YEAR C
 if ((year == 2007) && (month == 3) && (date > 1) && (date < 8)) document.write("<br><br><b>Church Season:</b> Holy Week");
 if ((year == 2007) && (month == 3) && (date == 5)) document.write("<br><b>Day:</b> Maundy Thursday");
 if ((year == 2007) && (month == 3) && (date == 6)) document.write("<br><b>Day:</b> Good Friday");
 if ((year == 2007) && (month == 3) && (date == 7)) document.write("<br><b>Day:</b> Holy Saturday");

// Easter - YEAR A
 if ((year == 2008) && (month == 2) && (date == 22)) document.write("<br><br><b>Church Season:</b> Easter");
 if ((year == 2008) && (month == 2) && (date > 22) && (date < 32)) document.write("<br><br><b>Church Season:</b> Easter (Eastertide)");
 if ((year == 2008) && (month == 3) && (date > 0) && (date < 32)) document.write("<br><br><b>Church Season:</b> Easter (Eastertide)");
 if ((year == 2008) && (month == 4) && (date > 0) && (date < 11)) document.write("<br><br><b>Church Season:</b> Easter (Eastertide)");
 if ((year == 2008) && (month == 2) && (date == 22)) document.write("<br><b>Day:</b> Easter Sunday");
 if ((year == 2008) && (month == 2) && (date == 30)) document.write("<br><b>Day:</b> Second Sunday of Easter");
 if ((year == 2008) && (month == 3) && (date == 6)) document.write("<br><b>Day:</b> Third Sunday of Easter");
 if ((year == 2008) && (month == 3) && (date == 13)) document.write("<br><b>Day:</b> Fourth Sunday of Easter");
 if ((year == 2008) && (month == 3) && (date == 20)) document.write("<br><b>Day:</b> Fifth Sunday of Easter");
 if ((year == 2008) && (month == 3) && (date == 27)) document.write("<br><b>Day:</b> Sixth Sunday of Easter");
 if ((year == 2008) && (month == 4) && (date == 1)) document.write("<br><b>Day:</b> The Ascension of Our Lord");
 if ((year == 2008) && (month == 3) && (date == 4)) document.write("<br><b>Day:</b> Seventh Sunday of Easter");
 if ((year == 2008) && (month == 4) && (date == 11)) document.write("<br><b>Day:</b> Pentecost Sunday");
// Easter - YEAR B
 if ((year == 2006) && (month == 3) && (date == 16)) document.write("<br><br><b>Church Season:</b> Easter");
 if ((year == 2006) && (month == 3) && (date > 15) && (date < 32)) document.write("<br><br><b>Church Season:</b> Easter (Eastertide)");
 if ((year == 2006) && (month == 4) && (date > 0) && (date < 32)) document.write("<br><br><b>Church Season:</b> Easter (Eastertide)");
 if ((year == 2006) && (month == 5) && (date > 0) && (date < 5)) document.write("<br><br><b>Church Season:</b> Easter (Eastertide)");
 if ((year == 2006) && (month == 3) && (date == 16)) document.write("<br><b>Day:</b> Easter Sunday");
 if ((year == 2006) && (month == 3) && (date == 23)) document.write("<br><b>Day:</b> Second Sunday of Easter");
 if ((year == 2006) && (month == 3) && (date == 30)) document.write("<br><b>Day:</b> Third Sunday of Easter");
 if ((year == 2006) && (month == 4) && (date == 7)) document.write("<br><b>Day:</b> Fourth Sunday of Easter");
 if ((year == 2006) && (month == 4) && (date == 14)) document.write("<br><b>Day:</b> Fifth Sunday of Easter");
 if ((year == 2006) && (month == 4) && (date == 21)) document.write("<br><b>Day:</b> Sixth Sunday of Easter");
 if ((year == 2006) && (month == 4) && (date == 25)) document.write("<br><b>Day:</b> The Ascension of Our Lord");
 if ((year == 2006) && (month == 4) && (date == 28)) document.write("<br><b>Day:</b> Seventh Sunday of Easter");
 if ((year == 2006) && (month == 5) && (date == 4)) document.write("<br><b>Day:</b> Pentecost Sunday");
// Easter - YEAR C
 if ((year == 2007) && (month == 3) && (date == 8)) document.write("<br><br><b>Church Season:</b> Easter");
 if ((year == 2007) && (month == 3) && (date > 7) && (date < 32)) document.write("<br><br><b>Church Season:</b> Easter (Eastertide)");
 if ((year == 2007) && (month == 4) && (date > 0) && (date < 28)) document.write("<br><br><b>Church Season:</b> Easter (Eastertide)");
 if ((year == 2007) && (month == 3) && (date == 8)) document.write("<br><b>Day:</b> Easter Sunday");
 if ((year == 2007) && (month == 3) && (date == 15)) document.write("<br><b>Day:</b> Second Sunday of Easter");
 if ((year == 2007) && (month == 3) && (date == 22)) document.write("<br><b>Day:</b> Third Sunday of Easter");
 if ((year == 2007) && (month == 3) && (date == 29)) document.write("<br><b>Day:</b> Fourth Sunday of Easter");
 if ((year == 2007) && (month == 4) && (date == 6)) document.write("<br><b>Day:</b> Fifth Sunday of Easter");
 if ((year == 2007) && (month == 4) && (date == 13)) document.write("<br><b>Day:</b> Sixth Sunday of Easter");
 if ((year == 2007) && (month == 4) && (date == 17)) document.write("<br><b>Day:</b> The Ascension of Our Lord");
 if ((year == 2007) && (month == 4) && (date == 20)) document.write("<br><b>Day:</b> Seventh Sunday of Easter");
 if ((year == 2007) && (month == 4) && (date == 27)) document.write("<br><b>Day:</b> Pentecost Sunday");

// Season After Pentecost - YEAR A
 if ((year == 2008) && (month == 4) && (date > 11) && (date < 32)) document.write("<br><br><b>Church Season:</b> After Pentecost (Ordinary Time)");
 if ((year == 2008) && (month > 4) && (month < 10)) document.write("<br><br><b>Church Season:</b> After Pentecost (Ordinary Time)");
 if ((year == 2008) && (month == 10) && (date > 0) && (date < 28)) document.write("<br><br><b>Church Season:</b> After Pentecost (Ordinary Time)");
 if ((year == 2008) && (month == 4) && (date == 18)) document.write("<br><b>Day:</b> First Sunday After Pentecost - The Holy Trinity");
 if ((year == 2008) && (month == 4) && (date == 25)) document.write("<br><b>Day:</b> Second Sunday after Pentecost");
 if ((year == 2008) && (month == 5) && (date == 1)) document.write("<br><b>Day:</b> Third Sunday after Pentecost");
 if ((year == 2008) && (month == 5) && (date == 8)) document.write("<br><b>Day:</b> Fourth Sunday after Pentecost");
 if ((year == 2008) && (month == 5) && (date == 15)) document.write("<br><b>Day:</b> Fifth Sunday after Pentecost");
 if ((year == 2008) && (month == 5) && (date == 22)) document.write("<br><b>Day:</b> Sixth Sunday after Pentecost");
 if ((year == 2008) && (month == 5) && (date == 29)) document.write("<br><b>Day:</b> Seventh Sunday after Pentecost");
 if ((year == 2008) && (month == 6) && (date == 6)) document.write("<br><b>Day:</b> Eighth Sunday after Pentecost");
 if ((year == 2008) && (month == 6) && (date == 13)) document.write("<br><b>Day:</b> Ninth Sunday after Pentecost");
 if ((year == 2008) && (month == 6) && (date == 20)) document.write("<br><b>Day:</b> Tenth Sunday after Pentecost");
 if ((year == 2008) && (month == 6) && (date == 27)) document.write("<br><b>Day:</b> Eleventh Sunday after Pentecost");
 if ((year == 2008) && (month == 7) && (date == 3)) document.write("<br><b>Day:</b> Twelfth Sunday after Pentecost");
 if ((year == 2008) && (month == 7) && (date == 10)) document.write("<br><b>Day:</b> Thirteenth Sunday after Pentecost");
 if ((year == 2008) && (month == 7) && (date == 17)) document.write("<br><b>Day:</b> Fourteenth Sunday after Pentecost");
 if ((year == 2008) && (month == 7) && (date == 24)) document.write("<br><b>Day:</b> Fifteenth Sunday after Pentecost");
 if ((year == 2008) && (month == 7) && (date == 31)) document.write("<br><b>Day:</b> Sixteenth Sunday after Pentecost");
 if ((year == 2008) && (month == 8) && (date == 7)) document.write("<br><b>Day:</b> Seventeenth Sunday after Pentecost");
 if ((year == 2008) && (month == 8) && (date == 14)) document.write("<br><b>Day:</b> Eighteenth Sunday after Pentecost");
 if ((year == 2008) && (month == 8) && (date == 21)) document.write("<br><b>Day:</b> Nineteenth Sunday after Pentecost");
 if ((year == 2008) && (month == 8) && (date == 28)) document.write("<br><b>Day:</b> Twentieth Sunday after Pentecost");
 if ((year == 2008) && (month == 9) && (date == 5)) document.write("<br><b>Day:</b> Twenty-first Sunday after Pentecost");
 if ((year == 2008) && (month == 9) && (date == 12)) document.write("<br><b>Day:</b> Twenty-second Sunday after Pentecost");
 if ((year == 2008) && (month == 9) && (date == 19)) document.write("<br><b>Day:</b> Twenty-third Sunday after Pentecost");
 if ((year == 2008) && (month == 9) && (date == 26)) document.write("<br><b>Day:</b> Twenty-fourth Sunday after Pentecost - Reformation Sunday");
 if ((year == 2008) && (month == 10) && (date == 1)) document.write("<br><b>Day:</b> All Saints Day");
 if ((year == 2008) && (month == 10) && (date == 2)) document.write("<br><b>Day:</b> Twenty-fifth Sunday after Pentecost - All Saints Sunday");
 if ((year == 2008) && (month == 10) && (date == 9)) document.write("<br><b>Day:</b> Twenty-sixth Sunday after Pentecost");
 if ((year == 2008) && (month == 10) && (date == 16)) document.write("<br><b>Day:</b> Twenty-seventh Sunday after Pentecost");
 if ((year == 2008) && (month == 10) && (date == 23)) document.write("<br><b>Day:</b> Twenty-fourth Sunday after Pentecost - Reign of Christ");
// Season After Pentecost - YEAR B
 if ((year == 2006) && (month == 5) && (date > 4) && (date < 32)) document.write("<br><br><b>Church Season:</b> After Pentecost (Ordinary Time)");
 if ((year == 2006) && (month > 5) && (month < 11)) document.write("<br><br><b>Church Season:</b> After Pentecost (Ordinary Time)");
 if ((year == 2006) && (month == 11) && (date > 0) && (date < 3)) document.write("<br><br><b>Church Season:</b> After Pentecost (Ordinary Time)");
 if ((year == 2006) && (month == 5) && (date == 11)) document.write("<br><b>Day:</b> First Sunday After Pentecost - The Holy Trinity");
 if ((year == 2006) && (month == 5) && (date == 18)) document.write("<br><b>Day:</b> Second Sunday after Pentecost");
 if ((year == 2006) && (month == 5) && (date == 25)) document.write("<br><b>Day:</b> Third Sunday after Pentecost");
 if ((year == 2006) && (month == 6) && (date == 2)) document.write("<br><b>Day:</b> Fourth Sunday after Pentecost");
 if ((year == 2006) && (month == 6) && (date == 9)) document.write("<br><b>Day:</b> Fifth Sunday after Pentecost");
 if ((year == 2006) && (month == 6) && (date == 16)) document.write("<br><b>Day:</b> Sixth Sunday after Pentecost");
 if ((year == 2006) && (month == 6) && (date == 23)) document.write("<br><b>Day:</b> Seventh Sunday after Pentecost");
 if ((year == 2006) && (month == 6) && (date == 30)) document.write("<br><b>Day:</b> Eighth Sunday after Pentecost");
 if ((year == 2006) && (month == 7) && (date == 6)) document.write("<br><b>Day:</b> Ninth Sunday after Pentecost");
 if ((year == 2006) && (month == 7) && (date == 13)) document.write("<br><b>Day:</b> Tenth Sunday after Pentecost");
 if ((year == 2006) && (month == 7) && (date == 20)) document.write("<br><b>Day:</b> Eleventh Sunday after Pentecost");
 if ((year == 2006) && (month == 7) && (date == 27)) document.write("<br><b>Day:</b> Twelfth Sunday after Pentecost");
 if ((year == 2006) && (month == 8) && (date == 3)) document.write("<br><b>Day:</b> Thirteenth Sunday after Pentecost");
 if ((year == 2006) && (month == 8) && (date == 10)) document.write("<br><b>Day:</b> Fourteenth Sunday after Pentecost");
 if ((year == 2006) && (month == 8) && (date == 17)) document.write("<br><b>Day:</b> Fifteenth Sunday after Pentecost");
 if ((year == 2006) && (month == 8) && (date == 24)) document.write("<br><b>Day:</b> Sixteenth Sunday after Pentecost");
 if ((year == 2006) && (month == 9) && (date == 1)) document.write("<br><b>Day:</b> Seventeenth Sunday after Pentecost");
 if ((year == 2006) && (month == 9) && (date == 8)) document.write("<br><b>Day:</b> Eighteenth Sunday after Pentecost");
 if ((year == 2006) && (month == 9) && (date == 15)) document.write("<br><b>Day:</b> Nineteenth Sunday after Pentecost");
 if ((year == 2006) && (month == 9) && (date == 22)) document.write("<br><b>Day:</b> Twentieth Sunday after Pentecost");
 if ((year == 2006) && (month == 9) && (date == 29)) document.write("<br><b>Day:</b> Twenty-first Sunday after Pentecost - Reformation Sunday");
 if ((year == 2006) && (month == 10) && (date == 1)) document.write("<br><b>Day:</b> All Saints Day");
 if ((year == 2006) && (month == 10) && (date == 5)) document.write("<br><b>Day:</b> Twenty-second Sunday after Pentecost - All Saints Sunday");
 if ((year == 2006) && (month == 10) && (date == 12)) document.write("<br><b>Day:</b> Twenty-third Sunday after Pentecost");
 if ((year == 2006) && (month == 10) && (date == 19)) document.write("<br><b>Day:</b> Twenty-fourth Sunday after Pentecost");
 if ((year == 2006) && (month == 10) && (date == 26)) document.write("<br><b>Day:</b> Twenty-fifth Sunday after Pentecost - Reign of Christ");
// Season After Pentecost - YEAR C
 if ((year == 2007) && (month == 4) && (date > 27) && (date < 32)) document.write("<br><br><b>Church Season:</b> After Pentecost (Ordinary Time)");
 if ((year == 2007) && (month > 4) && (month < 11)) document.write("<br><br><b>Church Season:</b> After Pentecost (Ordinary Time)");
 if ((year == 2007) && (month == 11) && (date > 0) && (date < 2)) document.write("<br><br><b>Church Season:</b> After Pentecost (Ordinary Time)");
 if ((year == 2007) && (month == 5) && (date == 3)) document.write("<br><b>Day:</b> First Sunday After Pentecost - The Holy Trinity");
 if ((year == 2007) && (month == 5) && (date == 10)) document.write("<br><b>Day:</b> Second Sunday after Pentecost");
 if ((year == 2007) && (month == 5) && (date == 17)) document.write("<br><b>Day:</b> Third Sunday after Pentecost");
 if ((year == 2007) && (month == 5) && (date == 24)) document.write("<br><b>Day:</b> Fourth Sunday after Pentecost");
 if ((year == 2007) && (month == 6) && (date == 1)) document.write("<br><b>Day:</b> Fifth Sunday after Pentecost");
 if ((year == 2007) && (month == 6) && (date == 8)) document.write("<br><b>Day:</b> Sixth Sunday after Pentecost");
 if ((year == 2007) && (month == 6) && (date == 15)) document.write("<br><b>Day:</b> Seventh Sunday after Pentecost");
 if ((year == 2007) && (month == 6) && (date == 22)) document.write("<br><b>Day:</b> Eighth Sunday after Pentecost");
 if ((year == 2007) && (month == 6) && (date == 29)) document.write("<br><b>Day:</b> Ninth Sunday after Pentecost");
 if ((year == 2007) && (month == 7) && (date == 5)) document.write("<br><b>Day:</b> Tenth Sunday after Pentecost");
 if ((year == 2007) && (month == 7) && (date == 12)) document.write("<br><b>Day:</b> Eleventh Sunday after Pentecost");
 if ((year == 2007) && (month == 7) && (date == 19)) document.write("<br><b>Day:</b> Twelfth Sunday after Pentecost");
 if ((year == 2007) && (month == 7) && (date == 26)) document.write("<br><b>Day:</b> Thirteenth Sunday after Pentecost");
 if ((year == 2007) && (month == 8) && (date == 2)) document.write("<br><b>Day:</b> Fourteenth Sunday after Pentecost");
 if ((year == 2007) && (month == 8) && (date == 9)) document.write("<br><b>Day:</b> Fifteenth Sunday after Pentecost");
 if ((year == 2007) && (month == 8) && (date == 16)) document.write("<br><b>Day:</b> Sixteenth Sunday after Pentecost");
 if ((year == 2007) && (month == 8) && (date == 23)) document.write("<br><b>Day:</b> Seventeenth Sunday after Pentecost");
 if ((year == 2007) && (month == 8) && (date == 30)) document.write("<br><b>Day:</b> Eighteenth Sunday after Pentecost");
 if ((year == 2007) && (month == 9) && (date == 7)) document.write("<br><b>Day:</b> Nineteenth Sunday after Pentecost");
 if ((year == 2007) && (month == 9) && (date == 14)) document.write("<br><b>Day:</b> Twentieth Sunday after Pentecost");
 if ((year == 2007) && (month == 9) && (date == 21)) document.write("<br><b>Day:</b> Twenty-first Sunday after Pentecost");
 if ((year == 2007) && (month == 9) && (date == 28)) document.write("<br><b>Day:</b> Twenty-second Sunday after Pentecost - Reformation Sunday");
 if ((year == 2007) && (month == 10) && (date == 1)) document.write("<br><b>Day:</b> All Saints Day");
 if ((year == 2007) && (month == 10) && (date == 4)) document.write("<br><b>Day:</b> Twenty-third Sunday after Pentecost - All Saints Sunday");
 if ((year == 2007) && (month == 10) && (date == 11)) document.write("<br><b>Day:</b> Twenty-fourth Sunday after Pentecost");
 if ((year == 2007) && (month == 10) && (date == 18)) document.write("<br><b>Day:</b> Twenty-fifth Sunday after Pentecost");
 if ((year == 2007) && (month == 10) && (date == 25)) document.write("<br><b>Day:</b> Twenty-sixth Sunday after Pentecost - Reign of Christ");



// LUTHERAN LESSER FESTIVALS AND COMMEMORATIONS (static) (per the ELCA at http://www.elca.org/worship)

// January
 if ((month == 0) && (date ==  1)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Name of Jesus.");
 if ((month == 0) && (date ==  2)) document.write("<br><br><b>Lutheran Commemoration:</b> Johann Konrad Wilhelm Loehe, renewer of the church, 1872.");
 if ((month == 0) && (date == 15)) document.write("<br><br><b>Lutheran Commemoration:</b> Martin Luther King Jr., renewer of society, martyr, 1968.");
 if ((month == 0) && (date == 17)) document.write("<br><br><b>Lutheran Commemoration:</b> Pachomius, 346; and Antony of Egypt, c. 356, renewers of the church.");
 if ((month == 0) && (date == 18)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Confession of Peter; and,");
 if ((month == 0) && (date == 18)) document.write("<br>the Lutheran Week of Prayer for Christian Unity begins today.");
 if ((month == 0) && (date == 19)) document.write("<br><br><b>Lutheran Commemoration:</b> Henry, Bishop of Uppsala, martyr, 1156; and,");
 if ((month == 0) && (date == 19)) document.write("<br>it's Day 2 of the Lutheran Week of Prayer for Christian Unity.");
 if ((month == 0) && (date == 20)) document.write("<br><br>The Lutheran Week of Prayer for Christian Unity (Day 3).");
 if ((month == 0) && (date == 21)) document.write("<br><br><b>Lutheran Commemoration:</b> Agnes, martyr, c. 304; and,");
 if ((month == 0) && (date == 21)) document.write("<br>it's Day 4 of the Lutheran Week of Prayer for Christian Unity.");
 if ((month == 0) && (date == 22)) document.write("<br><br>The Lutheran Week of Prayer for Christian Unity (Day 5).");
 if ((month == 0) && (date == 23)) document.write("<br><br>The Lutheran Week of Prayer for Christian Unity (Day 6).");
 if ((month == 0) && (date == 24)) document.write("<br><br>The Lutheran Week of Prayer for Christian Unity ends today.");
 if ((month == 0) && (date == 25)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Conversion of Paul.");
 if ((month == 0) && (date == 26)) document.write("<br><br><b>Lutheran Commemoration:</b> Timothy, Titus, and Silas, missionaries.");
 if ((month == 0) && (date == 27)) document.write("<br><br><b>Lutheran Commemoration:</b> Lydia, Dorcas, and Phoebe, witnesses to the faith.");
 if ((month == 0) && (date == 28)) document.write("<br><br><b>Lutheran Commemoration:</b> Thomas Aquinas, teacher, 1274.");

// February
 if ((month == 1) && (date ==  2)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Presentation of Our Lord.");
 if ((month == 1) && (date ==  3)) document.write("<br><br><b>Lutheran Commemoration:</b> Ansgar, Bishop of Hamburg, missionary to Denmark & Sweden, 865.");
 if ((month == 1) && (date ==  5)) document.write("<br><br><b>Lutheran Commemoration:</b> The Martyrs of Japan, 1597.");
 if ((month == 1) && (date == 14)) document.write("<br><br><b>Lutheran Commemoration:</b> Cyril, monk, 869; Methodius, bishop, 885; and Missionaries to the Slavs.");
 if ((month == 1) && (date == 18)) document.write("<br><br><b>Lutheran Commemoration:</b> Martin Luther, renewer of the church, 1546.");
 if ((month == 1) && (date == 23)) document.write("<br><br><b>Lutheran Commemoration:</b> Polycarp, Bishop of Smyrna, martyr, 156.");
 if ((month == 1) && (date == 25)) document.write("<br><br><b>Lutheran Commemoration:</b> Elizabeth Fedde, deaconess, 1921.");

// March
 if ((month == 2) && (date ==  1)) document.write("<br><br><b>Lutheran Commemoration:</b> George Herbert, hymnwriter, 1633.");
 if ((month == 2) && (date ==  2)) document.write("<br><br><b>Lutheran Commemoration:</b> Charles Wesley, theologian, hymnwriter, 1788; and John Wesley, theologian, 1791, renewers of the church.");
 if ((month == 2) && (date ==  7)) document.write("<br><br><b>Lutheran Commemoration:</b> Perpetua and Felicity and companions, martyrs at Carthage, 202.");
 if ((month == 2) && (date == 10)) document.write("<br><br><b>Lutheran Commemoration:</b> Sojourner Truth, 1883; and Harriet Tubman, 1913, renewers of society.");
 if ((month == 2) && (date == 12)) document.write("<br><br><b>Lutheran Commemoration:</b> Gregory the Great, Bishop of Rome, 604.");
 if ((month == 2) && (date == 17)) document.write("<br><br><b>Lutheran Commemoration:</b> Patrick, bishop, missionary to Ireland, 461.");
 if ((month == 2) && (date == 19)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Joseph, Guardian of Jesus.");
 if ((month == 2) && (date == 21)) document.write("<br><br><b>Lutheran Commemoration:</b> Thomas Cranmer, Bishop of Canterbury, martyr, 1556.");
 if ((month == 2) && (date == 22)) document.write("<br><br><b>Lutheran Commemoration:</b> Jonathan Edwards, teacher, missionary to American Indians, 1758.");
 if ((month == 2) && (date == 24)) document.write("<br><br><b>Lutheran Commemoration:</b> Oscar Arnulfo Romero, Bishop of El Salvadore, martyr, 1980.");
 if ((month == 2) && (date == 25)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Annunciation of Our Lord.");
 if ((month == 2) && (date == 29)) document.write("<br><br><b>Lutheran Commemoration:</b> Hans Nielsen Hauge, renewer of the church, 1824.");
 if ((month == 2) && (date == 31)) document.write("<br><br><b>Lutheran Commemoration:</b> John Donne, poet, 1631.");

// April
 if ((month == 3) && (date ==  1)) document.write("<br><br><b>Orthodox Observance:</b> The Feast of St. Mary of Egypt.");
 if ((month == 3) && (date ==  4)) document.write("<br><br><b>Lutheran Commemoration:</b> Benedict the African, confessor, 1589.");
 if ((month == 3) && (date ==  6)) document.write("<br><br><b>Lutheran Commemoration:</b> Albrecht Dürer, 1528; Matthias Grünewald, 1529; and Lucas Cranach, 1553, artists.");
 if ((month == 3) && (date ==  9)) document.write("<br><br><b>Lutheran Commemoration:</b> Dietrich Bonhoeffer, theologian, 1945.");
 if ((month == 3) && (date == 10)) document.write("<br><br><b>Lutheran Commemoration:</b> Michael Agricola, Bishop of Turku, 1557.");
 if ((month == 3) && (date == 19)) document.write("<br><br><b>Lutheran Commemoration:</b> Olavus Petri, priest, 1552; and Laurentius Petri, Bishop of Uppsala, 1573, and renewers of the church.");
 if ((month == 3) && (date == 21)) document.write("<br><br><b>Lutheran Commemoration:</b> Anselm, Bishop of Canterbury, 1109.");
 if ((month == 3) && (date == 23)) document.write("<br><br><b>Lutheran Commemoration:</b> Toyohiko Kagawa, renewer of society, 1960.");
 if ((month == 3) && (date == 25)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Mark, Evangelist.");
 if ((month == 3) && (date == 29)) document.write("<br><br><b>Lutheran Commemoration:</b> Catherine of Siena, theologian, 1380.");

// May
 if ((month == 4) && (date ==  1)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Philip and James, Apostles.");
 if ((month == 4) && (date ==  2)) document.write("<br><br><b>Lutheran Commemoration:</b> Athanasius, Bishop of Alexandria, 373.");
 if ((month == 4) && (date ==  4)) document.write("<br><br><b>Lutheran Commemoration:</b> Monica, mother of Augustine, 387.");
 if ((month == 4) && (date ==  8)) document.write("<br><br><b>Lutheran Commemoration:</b> Julian of Norwich, renewer of the church, 1416.");
 if ((month == 4) && (date ==  9)) document.write("<br><br><b>Lutheran Commemoration:</b> Nicolaus Ludwig von Zinzendorf, renewer of the church, hymnwriter, 1760.");
 if ((month == 4) && (date == 14)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Matthias, Apostle.");
 if ((month == 4) && (date == 18)) document.write("<br><br><b>Lutheran Commemoration:</b> Erik, King of Sweden, martyr, 1160.");
 if ((month == 4) && (date == 21)) document.write("<br><br><b>Lutheran Commemoration:</b> Helena, mother of Constantine, c. 330.");
 if ((month == 4) && (date == 24)) document.write("<br><br><b>Lutheran Commemoration:</b> Nicolaus Copernicus, 1543; and Leonhard Euler, 1783, scientists.");
 if ((month == 4) && (date == 27)) document.write("<br><br><b>Lutheran Commemoration:</b> John Calvin, renewer of the church, 1564.");
 if ((month == 4) && (date == 29)) document.write("<br><br><b>Lutheran Commemoration:</b> Jiri Tranovsky, hymnwriter, 1637.");
 if ((month == 4) && (date == 31)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Visit of Mary to Elizabeth.");

// June
 if ((month == 5) && (date ==  1)) document.write("<br><br><b>Lutheran Commemoration:</b> Justin, martyr at Rome, c. 165.");
 if ((month == 5) && (date ==  3)) document.write("<br><br><b>Lutheran Commemoration:</b> The Martyrs of Uganda, 1886; and, John XXIII, Bishop of Rome, 1963.");
 if ((month == 5) && (date ==  5)) document.write("<br><br><b>Lutheran Commemoration:</b> Boniface, Bishop of Mainz, missionary to Germany, martyr, 754.");
 if ((month == 5) && (date ==  7)) document.write("<br><br><b>Lutheran Commemoration:</b> Seattle, chief of the Duwamish Confederacy, 1866.");
 if ((month == 5) && (date ==  9)) document.write("<br><br><b>Lutheran Commemoration:</b> Columba, 597; Aidan, 651; Bede, 735, renewers of the church.");
 if ((month == 5) && (date == 11)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Barnabas, Apostle.");
 if ((month == 5) && (date == 14)) document.write("<br><br><b>Lutheran Commemoration:</b> Basil the Great, Bishop of Caesarea, 379; Gregory, Bishop of Nyssa, c. 385; and Gregory of Nazianzus, Bishop of Constantinople, c. 389; and Macrina, theologian, c. 379");
 if ((month == 5) && (date == 21)) document.write("<br><br><b>Lutheran Commemoration:</b> Onesimos Nesib, translator, evangelist, 1931.");
 if ((month == 5) && (date == 24)) document.write("<br><br><b>Lutheran Lesser Festival:</b> John the Baptist.");
 if ((month == 5) && (date == 25)) document.write("<br><br><b>Lutheran Commemoration:</b> Presentation of the Augsburg Confession, 1530; and Philipp Melanchthon, renewer of the church, 1560.");
 if ((month == 5) && (date == 27)) document.write("<br><br><b>Lutheran Commemoration:</b> Cyril, Bishop of Alexandria, 444.");
 if ((month == 5) && (date == 28)) document.write("<br><br><b>Lutheran Commemoration:</b> Irenaeus, Bishop of Lyons, c. 202.");
 if ((month == 5) && (date == 29)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Peter and Paul, Apostles.");

// July
 if ((month == 6) && (date ==  1)) document.write("<br><br><b>Lutheran Commemoration:</b> Catherine Winkworth, 1878; John Mason Neale, 1866; hymn translators.");
 if ((month == 6) && (date ==  3)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Thomas, Apostle.");
 if ((month == 6) && (date ==  6)) document.write("<br><br><b>Lutheran Commemoration:</b> Jan Hus, martyr, 1415.");
 if ((month == 6) && (date == 11)) document.write("<br><br><b>Lutheran Commemoration:</b> Benedict of Nursia, Abbot of Monte Cassino, c. 540.");
 if ((month == 6) && (date == 12)) document.write("<br><br><b>Lutheran Commemoration:</b> Nathan Söderblom, Bishop of Uppsala, 1931.");
 if ((month == 6) && (date == 17)) document.write("<br><br><b>Lutheran Commemoration:</b> Bartolomé de Las Casas, missionary to the Indies, 1566.");
 if ((month == 6) && (date == 22)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Mary Magdalene, Apostle.");
 if ((month == 6) && (date == 23)) document.write("<br><br><b>Lutheran Commemoration:</b> Birgitta of Sweden, renewer of the church, 1373.");
 if ((month == 6) && (date == 25)) document.write("<br><br><b>Lutheran Lesser Festival:</b> James, Apostle.");
 if ((month == 6) && (date == 28)) document.write("<br><br><b>Lutheran Commemoration:</b> Johann Sebastian Bach, 1750; Heinrich Schütz, 1672; George Frederick Handel, 1759; musicians.");
 if ((month == 6) && (date == 29)) document.write("<br><br><b>Lutheran Commemoration:</b> Mary, Martha, and Lazarus of Bethany; Olaf, King of Norway, martyr, 1030.");

// August
 if ((month == 7) && (date ==  8)) document.write("<br><br><b>Lutheran Commemoration:</b> Dominic, founder of the Order of Preachers (Dominicans), 1221.");
 if ((month == 7) && (date == 10)) document.write("<br><br><b>Lutheran Commemoration:</b> Lawrence, deacon, martyr, 258.");
 if ((month == 7) && (date == 11)) document.write("<br><br><b>Lutheran Commemoration:</b> Clare, renewer of the church, 1253.");
 if ((month == 7) && (date == 13)) document.write("<br><br><b>Lutheran Commemoration:</b> Florence Nightengale, 1910; Clara Maass, 1901; renewers of society.");
 if ((month == 7) && (date == 14)) document.write("<br><br><b>Lutheran Commemoration:</b> Maximilian Kolbe, 1941; Kaj Munk, 1944, martyrs.");
 if ((month == 7) && (date == 15)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Mary, Mother of Our Lord.");
 if ((month == 7) && (date == 20)) document.write("<br><br><b>Lutheran Commemoration:</b> Bernard, Abbot of Clairvaux, 1153.");
 if ((month == 7) && (date == 24)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Bartholomew, Apostle.");
 if ((month == 7) && (date == 28)) document.write("<br><br><b>Lutheran Commemoration:</b> Augustine, Bishop of Hippo, 430; and Moses the Black, monk, martyr, c. 400.");

// September
 if ((month == 8) && (date ==  2)) document.write("<br><br><b>Lutheran Commemoration:</b> Nikolai Frederik Severin Grundtvig, bishop, renewer of the church, 1872.");
 if ((month == 8) && (date ==  9)) document.write("<br><br><b>Lutheran Commemoration:</b> Peter Claver, priest, missionary to Colombia, 1654.");
 if ((month == 8) && (date == 13)) document.write("<br><br><b>Lutheran Commemoration:</b> John Chrysostom, Bishop of Constantinople, 407.");
 if ((month == 8) && (date == 14)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Holy Cross Day.");
 if ((month == 8) && (date == 16)) document.write("<br><br><b>Lutheran Commemoration:</b> Cyprian, Bishop of Carthage, martyr, c. 258.");
 if ((month == 8) && (date == 17)) document.write("<br><br><b>Lutheran Commemoration:</b> Hildegard of Bingen, abbess, 1179.");
 if ((month == 8) && (date == 18)) document.write("<br><br><b>Lutheran Commemoration:</b> Dag Hammarskjöld, renewer of society, 1961.");
 if ((month == 8) && (date == 21)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Matthew, Apostle and Evangelist.");
 if ((month == 8) && (date == 29)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Michael, and All Angels.");
 if ((month == 8) && (date == 30)) document.write("<br><br><b>Lutheran Commemoration:</b> Jerome, translator, teacher, 420.");

// October
 if ((month == 9) && (date ==  1)) document.write("<br><br><b>Lutheran Commemoration:</b> Francis of Assisi, renewer of the church, 1226; and Theodor Fliedner, renewer of society, 1864");
 if ((month == 9) && (date ==  6)) document.write("<br><br><b>Lutheran Commemoration:</b> William Tyndale, bible translator, martyr, 1536.");
 if ((month == 9) && (date ==  7)) document.write("<br><br><b>Lutheran Commemoration:</b> Henry Melchior Muhlenberg, pastor in North America, 1787.");
 if ((month == 9) && (date == 15)) document.write("<br><br><b>Lutheran Commemoration:</b> Teresa of Avila, teacher, renewer of the church, 1582.");
 if ((month == 9) && (date == 17)) document.write("<br><br><b>Lutheran Commemoration:</b> Ignatius, Bishop of Antioch, martyr, c. 115.");
 if ((month == 9) && (date == 18)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Luke, Evangelist.");
 if ((month == 9) && (date == 23)) document.write("<br><br><b>Lutheran Commemoration:</b> James of Jerusalem, martyr, c. 62.");
 if ((month == 9) && (date == 26)) document.write("<br><br><b>Lutheran Commemoration:</b> Philipp Nicolai, 1608; Johann Heermann, 1647; Paul Gerhardt, 1676; hymnwriters.");
 if ((month == 9) && (date == 28)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Simon and Jude, Apostles.");
 if ((month == 9) && (date == 31)) document.write("<br><br><b>Lutheran Commemoration:</b> Reformation Day.");

// November
 if ((month == 10) && (date ==  1)) document.write("<br><br><b>Lutheran Lesser Festival:</b> All Saints Day.");
 if ((month == 10) && (date ==  3)) document.write("<br><br><b>Lutheran Commemoration:</b> Martín de Porres, renewer of society, 1639.");
 if ((month == 10) && (date ==  7)) document.write("<br><br><b>Lutheran Commemoration:</b> John Christian Frederick Heyer, 1873; Bartholomaeus Ziegenbalg, 1719; Ludwig Nommensen, 1918; missionaries.");
 if ((month == 10) && (date == 11)) document.write("<br><br><b>Lutheran Commemoration:</b> Martin, Bishop of Tours, 397; Søren Aabye Kierkegaard, teacher, 1855.");
 if ((month == 10) && (date == 17)) document.write("<br><br><b>Lutheran Commemoration:</b> Elizabeth of Hungary, renewer of society, 1231.");
 if ((month == 10) && (date == 23)) document.write("<br><br><b>Lutheran Commemoration:</b> Clement, Bishop of Rome, c. 100; Miguel Agustín Pro, martyr, 1927.");
 if ((month == 10) && (date == 24)) document.write("<br><br><b>Lutheran Commemoration:</b> Justus Falckner, 1723; Jehu Jones, 1852, William Passavant, 1894; pastors in North America.");
 if ((month == 10) && (date == 25)) document.write("<br><br><b>Lutheran Commemoration:</b> Isaac Watts, hymnwriter, 1748.");
 if ((month == 10) && (date == 30)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Andrew, Apostle.");

// December
 if ((month == 11) && (date ==  3)) document.write("<br><br><b>Lutheran Commemoration:</b> Francis Xavier, missionary to Asia, 1552.");
 if ((month == 11) && (date ==  4)) document.write("<br><br><b>Lutheran Commemoration:</b> John of Damascus, theologian and hymnwriter, c. 749.");
 if ((month == 11) && (date ==  6)) document.write("<br><br><b>Lutheran Commemoration:</b> Nicholas, Bishop of Myra, c. 342.");
 if ((month == 11) && (date ==  7)) document.write("<br><br><b>Lutheran Commemoration:</b> Ambrose, Bishop of Milan, 397.");
 if ((month == 11) && (date == 13)) document.write("<br><br><b>Lutheran Commemoration:</b> Lucy, martyr, 304.");
 if ((month == 11) && (date == 14)) document.write("<br><br><b>Lutheran Commemoration:</b> John of the Cross, renewer of the church, 1591.");
 if ((month == 11) && (date == 20)) document.write("<br><br><b>Lutheran Commemoration:</b> Katharina von Bora Luther, renewer of the church, 1552.");
 if ((month == 11) && (date == 26)) document.write("<br><br><b>Lutheran Lesser Festival:</b> Stephen, Deacon and Martyr.");
 if ((month == 11) && (date == 27)) document.write("<br><br><b>Lutheran Lesser Festival:</b> John, Apostle and Evangelist.");
 if ((month == 11) && (date == 28)) document.write("<br><br><b>Lutheran Lesser Festival:</b> The Holy Innocents, Martyrs.");



// UN-SET/RESET FONT CHARACTERISTICS
document.write('</FONT></SPAN>')


// END
