function Prayer() 
{
		var intDayofMonth = new Date();
		var dy = intDayofMonth.getDate();
		var textnote = 100;
		var request = 200;
			if (dy == 1)  {textnote = "Soul Winning";}
			if (dy == 2)  {textnote = "Stronger Faith";}
			if (dy == 3)  {textnote = "Spiritual Growth";}
			if (dy == 4)  {textnote = "Patience";}
			if (dy == 5)  {textnote = "Love";}
			if (dy == 6)  {textnote = "Joy";}
			if (dy == 7)  {textnote = "Godly Leadership";}
			if (dy == 8)  {textnote = "Our National Leadership";}
			if (dy == 9)  {textnote = "World Leaders";}
			if (dy == 10) {textnote = "State Leadership";}
			if (dy == 11) {textnote = "County Leadership";}
			if (dy == 12) {textnote = "City Leadership";}
			if (dy == 13) {textnote = "Company Leadership";}
			if (dy == 14) {textnote = "Good Health";}
			if (dy == 15) {textnote = "Cancer Patients";}
			if (dy == 16) {textnote = "The Sick";}
			if (dy == 17) {textnote = "Health Care Providers";}
			if (dy == 18) {textnote = "Spiritually Ill";}
			if (dy == 19) {textnote = "Shut-ins";}
			if (dy == 20) {textnote = "Medical Research";}
			if (dy == 21) {textnote = "Strong Families";}
			if (dy == 22) {textnote = "A Pure Heart";}
			if (dy == 23) {textnote = "Happiness";}
			if (dy == 24) {textnote = "Self-Control";}
			if (dy == 25) {textnote = "Our Children";}
			if (dy == 26) {textnote = "Your Spouse";}
			if (dy == 27) {textnote = "Your Parents";}
			if (dy == 28) {textnote = "Unity";}
			if (dy == 29) {textnote = "Our Schools";}
			if (dy == 30) {textnote = "School Teachers";}
			if (dy == 31) {textnote = "Our Elders";}
			request = "<FONT COLOR=#102542 > <b> Remember to pray for: </FONT><FONT COLOR=#330000> " + textnote + "!</b></FONT>";
			return (request);
}