			var strToday, intdate, intDay, strDay, intMonth, strMonth, intYear;

			strToday = new Date();

			intDay = strToday.getDay();
			intdate = strToday.getDate();
			intMonth = strToday.getMonth();
			intYear = strToday.getYear();

			if (intDay == 0) strDay = "Sunday";
			else if (intDay == 1)	strDay = "Monday";
			else if (intDay == 2) strDay = "Tuesday";
			else if (intDay == 3) strDay = "Wednesday";
			else if (intDay == 4) strDay = "Thursday";
			else if (intDay == 5)	strDay = "Friday";
			else strDay = "Saturday";
				
			if (intMonth == 0) strMonth = "January";
				else if (intMonth == 1) strMonth = "February";
				else if (intMonth == 2) strMonth = "March";
				else if (intMonth == 3) strMonth = "April";
				else if (intMonth == 4) strMonth = "May";
				else if (intMonth == 5) strMonth = "June";
				else if (intMonth == 6) strMonth = "July";
				else if (intMonth == 7) strMonth = "August";
				else if (intMonth == 8) strMonth = "September";
				else if (intMonth == 9) strMonth = "October";
				else if (intMonth == 10) strMonth = "November";
				else strMonth = "December"

			if (intYear <= 1999)
				intYear += 1900;

			document.write(strDay + " - " + strMonth + " " + intdate + ", " + intYear);
