// Prayer for Today popup
// Today's Date Array of month day and year names
dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
monthNames = new Array("January","February","March","April","May","June","July", "August","September","October","November","December");
now = new Date();
Year = now.getFullYear();
MM = now.getMonth();
DD = now.getDate();
DY = now.getDay();
Dte = now.getDate();
Day = dayNames[DY];
Month = monthNames[MM];
Today = '<b>Today is ' + Day + ', ' + Dte + ' ' + Month + ' ' + Year + '</b>';

// Convert for use in Daily Prayer Link
Ye = Year - 2000;
if (Ye < 10) Ye = '0' + Ye;
Mo = MM + 1
if (Mo < 10) Mo = '0' + Mo;
Dt = DD;
if (Dt < 10) Dt = '0' + Dt;
ChaplainLink = '<a href="http://chaplainschair.sheaministries.org/' + Ye + Mo + '.htm"><img border="0" src="images/buttons/chaplain_chair.gif" vspace="2" alt="From the Chaplain\'s Chair..." width="84" height="42"></a>';

PrayerPath = 'http://dailyprayer.tsmj.us/index.htm?'
PrayerLink = '<a onclick="open(\'' + PrayerPath + Ye + Mo + Dt + '.htm?' + '\',\'dailyprayer\',\'left=100,top=40,toolbar=0,location=0,resizable=0,width=580,scrollbars=1,height=400\')" href="javascript:void(0)"><img alt="Click here to read the TSM Prayer for Today" src="http://www.sheaministries.org/images/buttons/prayer_today_1.gif" align="middle" border="0" hapce="4" vspace="2" width="84" height="42"></a>';