calendar = new Date();
day = calendar.getDay();
document.write("<font face=arial><center><table width=100 border=0><td><center><font size=2 color='#FFFFFF'>")
if (day == 0) {
document.write("Sunday")
}
if (day == 1) {
document.write("Monday")
}
if (day == 2) {
document.write("Tuesday")
}
if (day == 3) {
document.write("Wednesday")
}
if (day == 4) {
document.write("Thursday")
}
if (day == 5) {
document.write("Friday")
}
if (day == 6) {
document.write("Saturday")
}
if (day == 7) {
document.write("Sunday")
}
document.write("</font></center></td><tr><td><center><font size=2 color='#FFFFFF'>")
month = calendar.getMonth();
if (month == 0) {
document.write("January")
}
if (month == 1) {
document.write("February")
}
if (month == 2) {
document.write("March")
}
if (month == 3) {
document.write("April")
}
if (month == 4) {
document.write("May")
}
if (month == 5) {
document.write("June")
}
if (month == 6) {
document.write("July")
}
if (month == 7) {
document.write("August")
}
if (month == 8) {
document.write("September")
}
if (month == 9) {
document.write("October")
}
if (month == 10) {
document.write("November")
}
if (month == 11) {
document.write("December")
}

document.write("</font></center></td><tr><td><center><font size=5 color='#FFFFFF'>")
date = calendar.getDate();
document.write(date)
document.write("</font></center></td><tr><td><center><font size=2 color='#FFFFFF'>")
year = calendar.getYear();
if (year < 100) {
document.write("19" + year + "")
}
else if (year > 1999) {
document.write(year)
}
document.write("</font></center></td></table>")
