// date
var DaysofWeek = new Array();
DaysofWeek[0]="Sun";
DaysofWeek[1]="Mon";
DaysofWeek[2]="Tue";
DaysofWeek[3]="Wed";
DaysofWeek[4]="Thu";
DaysofWeek[5]="Fri";
DaysofWeek[6]="Sat";
var Months = new Array();
Months[0]="Jan";
Months[1]="Feb";
Months[2]="Mar";
Months[3]="Apr";
Months[4]="May";
Months[5]="Jun";
Months[6]="Jul";
Months[7]="Aug";
Months[8]="Sep";
Months[9]="Oct";
Months[10]="Nov";
Months[11]="Dec";
var 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);