    // Date Display Function RUS

    function displayDate(){
    var this_month = new Array(12);
    this_month[0]  = "\u044f\u043d\u0432\u0430\u0440\u044f";
    this_month[1]  = "\u0444\u0435\u0432\u0440\u0430\u043b\u044f";
    this_month[2]  = "\u043c\u0430\u0440\u0442\u0430";
    this_month[3]  = "\u0430\u043f\u0440\u0435\u043b\u044f";
    this_month[4]  = "\u043c\u0430\u044f";
    this_month[5]  = "\u0438\u044e\u043d\u044f";
    this_month[6]  = "\u0438\u044e\u043b\u044f";
    this_month[7]  = "\u0430\u0432\u0433\u0443\u0441\u0442\u0430";
    this_month[8]  = "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f";
    this_month[9]  = "\u043e\u043a\u0442\u044f\u0431\u0440\u044f";
    this_month[10] = "\u043d\u043e\u044f\u0431\u0440\u044f";
    this_month[11] = "\u0434\u0435\u043a\u0430\u0431\u0440\u044f";
    var today = new Date();
    var day   = today.getDate();
    var month = today.getMonth();
    var year  = today.getYear();
    if (year < 1900){
    year += 1900;
    }
    return(year);
}
