<!-- Hide from JS-Impaired Browsers/* MAIN VARIABLES LISTdayLngStp = WednesdaydayShrtStp = Wed.monthLngStp = SeptembermonthShrtStp = Sep.dayYearStp = " 24, 2003"dateLngStp = September 24, 2003dateShrtStp = Sep. 24, '03dateAndTimeStp = Wednesday, September 24, 2003, 12:35 PMdateNumStp = 9/24/03theTimeNow = 12:35:45 PMtheTimeNoSecs = 12:35 PM--USE ANY OF THESE VARIABLES INSIDE "document.write()"ex. "document.write(dayShrtStp+dateShrtStp)"-- END VARIABLES LIST */// ------- The Setup ---------function arr() { for (n=0;n<arr.arguments.length;n++) {  this[n] = arr.arguments[n]; }}longDays = new arr("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");shortDays = new arr("Sun","Mon","Tue","Wed","Thu","Fri","Sat");longMonths = new arr("January","February","March","April","May","June",                 "July","August","September","October","November","December");shortMonths = new arr("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");// ----- END Setup// ------- THE DATE -------var today = new Date();month = today.getMonth()monthNum = month + 1day = today.getDate()year = today.getFullYear()yearShort = "0"+(year - 2000)weekDay = today.getDay()// ----- END DATE// ------- THE TIME -------var theHours=today.getHours();if (theHours>11){theTimeSuffix="PM"}if (theHours>12)var theHours=theHours-12else{theTimeSuffix="AM"}if (theHours<1)var theHours=12var theMinutes=today.getMinutes()if (theMinutes<10)var theMinutes="0"+theMinutesvar theSeconds=today.getSeconds()if (theSeconds<10)var theSeconds="0"+theSecondsvar theTimeNow=theHours+":"+theMinutes+":"+theSeconds+" "+theTimeSuffixvar theTimeNoSecs=theHours+":"+theMinutes+" "+theTimeSuffix// ----- END TIME// ------- STAMP IT -------var dayLngStp = (longDays[weekDay]);var dayShrtStp = (shortDays[weekDay]);var monthLngStp = (longMonths[month]);var monthShrtStp = (shortMonths[month]);var dayYearStp = (" "+day+", "+year);var dateLngStp = (longMonths[month]+" "+day+", "+year);var dateShrtStp = (shortMonths[month]+" "+day+", '"+yearShort);var dateAndTimeStp = (longDays[weekDay]+", "+longMonths[month]+" "+day+", "+year+", "+theTimeNoSecs);var dateNumStp = (monthNum+"/"+day+"/"+yearShort)// ----- END STAMP// -->