<!--
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
function makeArray(n) {
this.length = n
return this
}
monthNames = new makeArray(12)
monthNames[1] = "&#1103;&#1085;&#1074;&#1072;&#1088;&#1100;"
monthNames[2] = "&#1092;&#1077;&#1074;&#1088;&#1072;&#1083;&#1100;"
monthNames[3] = "&#1084;&#1072;&#1088;&#1090;"
monthNames[4] = "&#1072;&#1087;&#1088;&#1077;&#1083;&#1100;"
monthNames[5] = "&#1084;&#1072;&#1081;"
monthNames[6] = "&#1080;&#1102;&#1085;&#1100;"
monthNames[7] = "&#1080;&#1102;&#1083;&#1100;"
monthNames[8] = "&#1072;&#1074;&#1075;&#1091;&#1089;&#1090;"
monthNames[9] = "&#1089;&#1077;&#1085;&#1090;&#1103;&#1073;&#1088;&#1100;"
monthNames[10] = "&#1086;&#1082;&#1090;&#1103;&#1073;&#1088;&#1100;"
monthNames[11] = "&#1085;&#1086;&#1103;&#1073;&#1088;&#1100;"
monthNames[12] = "&#1076;&#1077;&#1082;&#1072;&#1073;&#1088;&#1100;"
function dateString(oneDate) {
var theMonth = monthNames[oneDate.getMonth() + 1]
var theYear = oneDate.getFullYear()
return theMonth + " " + oneDate.getDate() + ", " + theYear
}
//-->
