calendar = new Date();
  day = calendar.getDay();
  document.write("<font face=arial><center><table width=100 border=0><td><center><font size=2>")
  if (day == 0)
    {document.write("Воскресенье")}
  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("Суббота")}
  if (day == 7)
    {document.write("Воскресенье")}
  document.write("</font></center></td><tr><td><center><font size=7>")
  date = calendar.getDate();
  document.write(date)
  document.write("</font></center></td><tr><td><center><font size=2>")
  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><td><center><font size=2>")
  year = calendar.getYear();
  if (year < 100)
    {document.write("19" + year + "")}
  else if (year > 1999)
    {document.write(year)}
  document.write(" года</font></center></td></table>")
