// 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>';

// Prayer for Today Link
Y = Year - 2000;
if (Y < 10) Y = '0' + Y;
M = MM + 1
if (M < 10) M = '0' + M;
D = DD;
if (D < 10) D = '0' + D;

// Prayer for Today
PrayerPath = 'http://dailyPrayer.tsmj.org/index.htm?'
PrayerLink = '<a onclick="open(\'' + PrayerPath + Y + M + D + '.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="images/buttons/prayer_today.gif" align="middle" border="0" hapce="4" vspace="2" width="84" height="42"></a>';
