DaysofWeek = new Array()
DaysofWeek[0]="Sunday"
DaysofWeek[1]="Monday"
DaysofWeek[2]="Tuesday"
DaysofWeek[3]="Wednesday"
DaysofWeek[4]="Thursday"
DaysofWeek[5]="Friday"
DaysofWeek[6]="Saturday"

Months = new Array()
Months[0]="JAN"
Months[1]="FEB"
Months[2]="MAR"
Months[3]="APR"
Months[4]="May"
Months[5]="June"
Months[6]="July"
Months[7]="AUG"
Months[8]="SEPT"
Months[9]="OCT"
Months[10]="NOV"
Months[11]="DEC"

RightNow = new Date()

var day = DaysofWeek[RightNow.getDay()]
var date = RightNow.getDate()
var Month = Months[RightNow.getMonth()]
var Year = RightNow.getFullYear()

document.write(day+ ", " +Month+ " " +date+ ", " +Year)
