	function UpcomingEventsDescription() {

		vColor = "009900"
		vEventLinkColor = "0099cc"
		vTimeColor = "9900cc"
		vEventColor = "red"

		vUpCom = ""
		vLoc = "<UL>"
		aEventLink = new Array()


		a = new Date("10-25-2008")
		if(a >= new Date()) {
			vEvent = "Basement and Bake Sale"
			vLink = "l" + vEvent.replace(/ /g,"")
			aEventLink.push(vEvent)

			vLoc += "<LI><a href=\"#" + vLink + "\"><font color=" + vEventLinkColor + ">" + vEvent + "</font></A>"
			vUpCom += "<a name=\"" + vLink + "\"></A>"
			vUpCom += "<H1 align=center><font color=\"" + vColor + "\">"
			vUpCom += vEvent
			vUpCom += "</font></H1>"
			vUpCom += "<HR color=" + vColor + ">"

			vUpCom += "We are having our annual "
			vUpCom += "<font color=" + vEventColor + "><B>" + vEvent + "</font> <font color=" + vTimeColor + ">" + a.toLocaleString().replace(/ [0-9:]+ [APM]+$/,"") + "</B></font>."
			vUpCom += " Hope to see you there!"
			vUpCom += "<BR>We are accepting donatated item at this time."
			vUpCom += "<BR>There is a sign up sheet in the church foyer for volunteer help."

			vUpCom += "<BR><BR><BR>"
		}






		a = new Date("11-18-2007")
		if(a >= new Date()) {
			vEvent = "Annual Meeting"
			vLink = "l" + vEvent.replace(/ /g,"")
			aEventLink.push(vEvent)

			vLoc += "<LI><a href=\"#" + vLink + "\"><font color=" + vEventLinkColor + ">" + vEvent + "</font></A>"
			vUpCom += "<a name=\"" + vLink + "\"></A>"
			vUpCom += "<H1 align=center><font color=\"" + vColor + "\">"
			vUpCom += vEvent
			vUpCom += "</font></H1>"
			vUpCom += "<HR color=" + vColor + ">"

			vUpCom += "We are having our annual "
			vUpCom += "<font color=" + vEventColor + "><B>" + vEvent + "</font> <font color=" + vTimeColor + ">" + a.toLocaleString().replace(/ [0-9:]+ [APM]+$/,"") + "</B></font>."
			vUpCom += " Hope to see you there!"
			vUpCom += "<BR>We are accepting donatated item at this time."
			vUpCom += "<BR>There is a sign up sheet in the church foyer for volunteer help."

			vUpCom += "<BR><BR><BR>"
		}








		a = new Date("11-11-2008")
		if(a >= new Date()) {
			vEvent = "Church Board Meeting"
			vLink = "l" + vEvent.replace(/ /g,"")
			aEventLink.push(vEvent)

			vLoc += "<LI><a href=\"#" + vLink + "\"><font color=" + vEventLinkColor + ">" + vEvent + "</font></A>"
			vUpCom += "<a name=\"" + vLink + "\"></A>"
			vUpCom += "<H1 align=center><font color=\"" + vColor + "\">"
			vUpCom += vEvent
			vUpCom += "</font></H1>"
			vUpCom += "<HR color=" + vColor + ">"

			vUpCom += "We are having our "
			vUpCom += "<font color=" + vEventColor + "><B>" + vEvent + "</font> <font color=" + vTimeColor + ">" + a.toLocaleString().replace(/ [0-9:]+ [APM]+$/,"") + "</B></font>."
			vUpCom += "<BR>We will be meeting at 7:00 PM in the Church House."
//			vUpCom += "<BR>We are accepting donatated item at this time."
//			vUpCom += "<BR>There is a sign up sheet in the church foyer for volunteer help."

			vUpCom += "<BR><BR><BR>"
		}








		a = new Date("11-15-2008")
		if(a >= new Date()) {
			vEvent = "Men’s Breakfast"

			vLink = "l" + vEvent.replace(/ /g,"")
			aEventLink.push(vEvent)
			vLoc += "<LI><a href=\"#" + vLink + "\"><font color=" + vEventLinkColor + ">" + vEvent + "</font></A>"
			vUpCom += "<a name=\"" + vLink + "\"></A>"
			vUpCom += "<H1 align=center><font color=\"" + vColor + "\">"
			vUpCom += vEvent
			vUpCom += "</font></H1>"
			vUpCom += "<HR color=" + vColor + ">"

			vUpCom += "We are having our "
			vUpCom += "<font color=" + vEventColor + "><B>" + vEvent + "</font> <font color=" + vTimeColor + ">" + a.toLocaleString().replace(/ [0-9:]+ [APM]+$/,"") + "</B></font>."
			vUpCom += "<BR>The time is 8:30 AM at Springfield Baptist Church."
//			vUpCom += "<BR>We are accepting donatated item at this time."
//			vUpCom += "<BR>There is a sign up sheet in the church foyer for volunteer help."

			vUpCom += "<BR><BR><BR>"
		}















		vLoc += "</UL>"

		if(vMenuPage == true) {
			if(vEvent != "") {
				dUpcomingEventsLinks.innerHTML = "<P><a href='Upcoming Events.html' target='Main'><font face='Abadi MT Condensed Light' size=2><B>" + aEventLink.join("<BR>") + "</B></font></a><P>"
			}
		} else {
			if(vUpCom == "") {
				dUpcomingEventsLoc.innerHTML = "Nothing is currently scheduled.  This was last updated on: " + document.lastModified
				dUpcomingEvents.innerHTML = vUpCom
			} else {
				dUpcomingEventsLoc.innerHTML = vLoc
				dUpcomingEvents.innerHTML = vUpCom
			}
		}
	}
