<!--
now = new Date()
month = now.getMonth() + 1                                              // add one to adjust for array offset
day = now.getDate()

// prepend zero for single digit dates
month = (month <10) ? ("0" + month) : month;
day = (day <10) ? ("0" + day) : day;

week = now.getDay()
year = now.getFullYear()
DaysofWeek = new Array()

DaysofWeek[0]="Sunday"
DaysofWeek[1]="Monday"
DaysofWeek[2]="Tuesday"
DaysofWeek[3]="Wednesday"
DaysofWeek[4]="Thursday"
DaysofWeek[5]="Friday"
DaysofWeek[6]="Saturday"
document.write(DaysofWeek[week]+", "+day+"/"+month+"/"+year);
//-->
