// Original:  Dandello (dandello@pacifier.com) -->

// This script and many more are available free online at -->
// The JavaScript Source!! http://javascript.internet.com -->
// This script was modified for proprietary use by Ken Breeden, Renaissance Interactive, 10/19/99 -->

// Begin
var day="";
var month="";
var myweekday="";
var year="";
newdate = new Date();
mydate = new Date();
newtime=newdate.getTime();

mydate.setTime(newtime);
myday = mydate.getDay();
mymonth = mydate.getMonth();
myweekday= mydate.getDate();
weekday= myweekday;
myyear= mydate.getYear();
year = myyear;

// Y2K fix by Ken Breeden - Renaissance Interactive 1/10/00
if (year < 2000)
	year += 1900;

yhours = mydate.getHours();
if (yhours > 12) {
myhours = yhours - 12 ; mm = " pm";
}
else {
	if (yhours == 0)
		myhours = 12;
	else
		myhours = yhours;
	if (yhours == 12)
		mm = " pm";
	else
		mm = " am";
}
myminutes = mydate.getMinutes();
if (myminutes < 10){
mytime = ":0" + myminutes;
}
else {
mytime = ":" + myminutes;
};
arday = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
armonth = new Array("January ","February ","March ","April ","May ","June ","July ","August ","September ", "October ","November ","December ")
ardate = new Array("0th","1st","2nd","3rd","4th","5th","6th","7th","8th","9th","10th","11th","12th","13th","14th","15th","16th","17th","18th","19th","20th","21st","22nd","23rd","24th","25th","26th","27th","28th","29th","30th","31st");
// rename locale as needed.

// var time = (arday[myday] +", " + armonth[mymonth] +" "+ardate[myweekday] + ", " + year + " " + myhours + mytime + mm);
var time = (arday[myday] +", " + armonth[mymonth] +" "+ardate[myweekday] + ", " + year);
document.write(time);