calendar = new Date();
day = calendar.getDay();
document.write("<table width=100 border=1><tr><td><center><font size=2 color=#005ca2>")
if (day == 0) {document.write("<font color=#ee0000>Воскресенье</font>")}
if (day == 1) {document.write("Понедельник")}
if (day == 2) {document.write("Вторник")}
if (day == 3) {document.write("Среда")}
if (day == 4) {document.write("Четверг")}
if (day == 5) {document.write("Пятница")}
if (day == 6) {document.write("<font color=#ff0000>Суббота</font>")}
document.write("</font></center></td></tr><tr><td><center><font size=2 color=#005ca2>")
month = calendar.getMonth();
if (month == 0) {document.write("Январь")}
if (month == 1) {document.write("Февраль")}
if (month == 2) {document.write("Март")}
if (month == 3) {document.write("Апрель")}
if (month == 4) {document.write("Май")}
if (month == 5) {document.write("Июнь")}
if (month == 6) {document.write("Июль")}
if (month == 7) {document.write("Август")}
if (month == 8) {document.write("Сентябрь")}
if (month == 9) {document.write("Октябрь")}
if (month == 10) {document.write("Ноябрь")}
if (month == 11) {document.write("Декабрь")}
document.write("</font></center></td></tr><tr><td><center><font size=6 color=#ee0000>")
date = calendar.getDate();
document.write(date)
document.write("</font></center></td></tr><tr><td><center><font size=2 color=#005ca2>")
year = calendar.getYear();
if (year < 100) {document.write("19" + year + "")}
else if (year > 1999) {document.write(year)}
document.write("</font></center></td></tr></table>")
