function CalScript() 
{
						//Script to display the prayer requests.
var intMonth1 = new Date();
var MonthNum1 = intMonth1.getMonth();
var Monthtext = 200;

		if (MonthNum1 == 0) 
			{
			sourcetxt = "\"Calendar/January.htm\""
			}
		else if (MonthNum1 == 1) 
			{
			sourcetxt = "\"Calendar/February.htm\""
			}
		else if (MonthNum1 == 2) 
			{
			sourcetxt = "\"Calendar/March.htm\""
			}
		else if (MonthNum1 == 3) 
			{
			sourcetxt = "\"Calendar/April.htm\""
			}
		else if (MonthNum1 == 4) 
			{
			sourcetxt = "\"Calendar/May.htm\""
			}
		else if (MonthNum1 == 5) 				
			{
			sourcetxt = "\"Calendar/June.htm\""
			}
		else if (MonthNum1 == 6) 
			{sourcetxt = "\"Calendar/July.htm\""}
		else if (MonthNum1 == 7) 
			{sourcetxt = "\"Calendar/August.htm\""}
		else if (MonthNum1 == 8) 
			{sourcetxt = "\"Calendar/September.htm\""}
		else if (MonthNum1 == 9) 
			{sourcetxt = "\"Calendar/October.htm\""}
		else if (MonthNum1 == 10)
			{sourcetxt = "\"Calendar/November.htm\""}
		else if (MonthNum1 == 11)
			{sourcetxt = "\"Calendar/December.htm\""}

		Monthtext = "<iframe name=Calendar_Frame src=" + sourcetxt + "marginwidth=1 marginheight=1 height=200 width=225 scrolling=no align=middle border=0 frameborder=0>"
			+ "</iframe>";

		return (Monthtext);
}