// Display the current date

var today = new Date()
var year = today.getYear()
if(year<1000) year+=1900
document.write(GetDay(today.getDay()) + " " + GetMonth(today.getMonth()) + " " + today.getDate() + ", " + year)
