 calendar = new Date();
  day = calendar.getDay();
  document.write("<font face=arial><center><table width=100 border=1><td><center><font size=2>")
  if (day == 0)
    {document.write("&#1042;&#1086;&#1089;&#1082;&#1088;&#1077;&#1089;&#1077;&#1085;&#1100;&#1077;")}
  if (day == 1)
    {document.write("&#1055;&#1086;&#1085;&#1077;&#1076;&#1077;&#1083;&#1100;&#1085;&#1080;&#1082;")}
  if (day == 2)
    {document.write("&#1042;&#1090;&#1086;&#1088;&#1085;&#1080;&#1082;")}
  if (day == 3)
    {document.write("&#1057;&#1088;&#1077;&#1076;&#1072;")}
  if (day == 4)
    {document.write("&#1063;&#1077;&#1090;&#1074;&#1077;&#1088;&#1075;")}
  if (day == 5)
    {document.write("&#1055;&#1103;&#1090;&#1085;&#1080;&#1094;&#1072;")}
  if (day == 6)
    {document.write("&#1057;&#1091;&#1073;&#1073;&#1086;&#1090;&#1072;")}
  if (day == 7)
    {document.write("&#1042;&#1086;&#1089;&#1082;&#1088;&#1077;&#1089;&#1077;&#1085;&#1100;&#1077;")}
  document.write("</font></center></td><tr><td><center><font size=2>")
  month = calendar.getMonth();
  if (month == 0)
    {document.write("&#1071;&#1085;&#1074;&#1072;&#1088;&#1100;")}
  if (month == 1)
    {document.write("&#1060;&#1077;&#1074;&#1088;&#1072;&#1083;&#1100;")}
  if (month == 2)
    {document.write("&#1052;&#1072;&#1088;&#1090;")}
  if (month == 3)
    {document.write("&#1040;&#1087;&#1088;&#1077;&#1083;&#1100;")}
  if (month == 4)
    {document.write("&#1052;&#1072;&#1081;")}
  if (month == 5)
    {document.write("&#1048;&#1102;&#1085;&#1100;")}
  if (month == 6)
    {document.write("&#1048;&#1102;&#1083;&#1100;")}
  if (month == 7)
    {document.write("&#1040;&#1074;&#1075;&#1091;&#1089;&#1090;")}
  if (month == 8)
    {document.write("&#1057;&#1077;&#1085;&#1090;&#1103;&#1073;&#1088;&#1100;")}
  if (month == 9)
    {document.write("&#1054;&#1082;&#1090;&#1103;&#1073;&#1088;&#1100;")}
  if (month == 10)
    {document.write("&#1053;&#1086;&#1103;&#1073;&#1088;&#1100;")}
  if (month == 11)
    {document.write("&#1044;&#1077;&#1082;&#1072;&#1073;&#1088;&#1100;")}
  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>")
  year = calendar.getYear();
  if (year < 100)
    {document.write("19" + year + "")}
  else if (year > 1999)
    {document.write(year)}
  document.write("</font></center></td></table>")
