function CurrentDate()
{
Now = new Date();
theMonth = Now.getMonth();
if (theMonth == "0") {theMonth = " января "}
else if (theMonth == "1") {theMonth = " февраля "}
else if (theMonth == "2") {theMonth = " марта "}
else if (theMonth == "3") {theMonth = " апреля "}
else if (theMonth == "4") {theMonth = " мая "}
else if (theMonth == "5") {theMonth = " июня "}
else if (theMonth == "6") {theMonth = " июля "}
else if (theMonth == "7") {theMonth = " августа "}
else if (theMonth == "8") {theMonth = " сентября "}
else if (theMonth == "9") {theMonth = " октября "}
else if (theMonth == "10") {theMonth = " ноября "}
else if (theMonth == "11") {theMonth = " декабря "}

document.write(Now.getDate() + theMonth + Now.getFullYear() + ' года');
}