("
") document.writeln(""); today = new Date(); days = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"); months = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); ss_day = today.getDate(); if((ss_day == 1) || (ss_day == 21) || (ss_day == 31)){ ss_day_th = "st"; } else if((ss_day == 2) || (ss_day == 22)){ ss_day_th = "nd"; } else if((ss_day == 3) || (ss_day == 23)){ ss_day_th = "rd"; } else { ss_day_th = "th"; }; document.writeln("Today is the day that the Lord has made.
It is " + days[today.getDay()] + ", the " + today.getDate() + ss_day_th + " of " + months[today.getMonth()] + "."); document.writeln("

"); document.writeln("from Text-O-Matic by MyComputer.com"); 1