<!--
// Store the date in a variable
e = new Date()
dateText = ""
// Get the current month and convert it to the name of the month
monthValue = e.getMonth()
dateText += " "
if (monthValue == 0)
    dateText += "Январь"
if (monthValue == 1)
    dateText += "Февраль"
if (monthValue == 2)
    dateText += "Март"
if (monthValue == 3)
    dateText += "Апрель"
if (monthValue == 4)
    dateText += "Май"
if (monthValue == 5)
    dateText += "Июнь"
if (monthValue == 6)
    dateText += "Июль"
if (monthValue == 7)
    dateText += "Август"
if (monthValue == 8)
    dateText += "Сентябрь"
if (monthValue == 9)
    dateText += "Октябрь"
if (monthValue == 10)
    dateText += "Ноябрь"
if (monthValue == 11)
    dateText += "Декабрь"

// Get the current year; if it's before 2000, add 1900
if (e.getYear() < 2000) 
    dateText += " " + e.getDate() + ", " + (1900 + e.getYear())
else 
    dateText += " " + e.getDate() + ", " + (e.getYear())

// Write the greeting, the date, and the time to the page
document.write(dateText)
//-->

