var theDate = new Date();
	theDay = theDate.getDay();
	theNum = theDate.getDate();
	theMonth = theDate.getMonth();
	theYear = theDate.getYear();
var Days = new Array();
	Days[0] = 	'Sunday';
	Days[1] = 	'Monday';
	Days[2] = 	'Tuesday';
	Days[3] = 	'Wednesday';
	Days[4] = 	'Thursday';
	Days[5] = 	'Friday';
	Days[6] = 	'Saturday';

var Months = new Array();
	Months[0] = 	'January';
	Months[1] = 	'February';
	Months[2] = 	'March';
	Months[3] = 	'April';
	Months[4] = 	'May';
	Months[5] = 	'June';
	Months[6] = 	'July';
	Months[7] = 	'August';
	Months[8] = 	'September';
	Months[9] = 	'October';
	Months[10] = 	'November';
	Months[11] = 	'December';

	if (theYear < '83') var preYear = '20';
	else var preYear = '19';
	if (theNum == '1' || theNum == '21' || theNum == '31') var aftDate = '<SUP>st</SUP>'
	else if (theNum == '2' || theNum == '22') var aftDate = '<SUP>nd</SUP>'
	else if (theNum == '3' || theNum == '23') var aftDate = '<SUP>rd</SUP>'
	else var aftDate = '<SUP>th</SUP>'

var browser;
var bName = navigator.appName;
var bVersion = parseInt(navigator.appVersion);
 if (bName == "Netscape" && (bVersion == 5 || bVersion == 6)){
 	browser = 'N5';
	theYear = theYear + 1900;
}

function date(date){
 window.status = Days[theDay] + ',' + theNum + '/' + Months[theMonth] + '/' + theYear;
 setTimeout("date()",100);
}

