function display_date() {

   date = new Date();

   var day_of_week_number = date.getDay();
   var day_of_month = date.getDate();
   var month_number = date.getMonth();
   var year = date.getYear();
   var day_of_week = '';
   var month = ''

   if(month_number == 0){month = '&#1103;&#1085;&#1074;&#1072;&#1088;&#1103;';}
   if(month_number == 1){month = '&#1092;&#1077;&#1074;&#1088;&#1072;&#1083;&#1103;';}
   if(month_number == 2){month = '&#1084;&#1072;&#1088;&#1090;&#1072;';}
   if(month_number == 3){month = '&#1072;&#1087;&#1088;&#1077;&#1083;&#1103;';}
   if(month_number == 4){month = '&#1084;&#1072;&#1103;';} 
   if(month_number == 5){month = '&#1080;&#1102;&#1085;&#1103;';}
   if(month_number == 6){month = '&#1080;&#1102;&#1083;&#1103;';}
   if(month_number == 7){month = '&#1072;&#1074;&#1075;&#1091;&#1089;&#1090;&#1072;';}
   if(month_number == 8){month = '&#1089;&#1077;&#1085;&#1090;&#1103;&#1073;&#1088;&#1103;';}
   if(month_number == 9){month = '&#1086;&#1082;&#1090;&#1103;&#1073;&#1088;&#1103;';}
   if(month_number == 10){month ='&#1085;&#1086;&#1103;&#1073;&#1088;&#1103;';}
   if(month_number == 11){month ='&#1076;&#1077;&#1082;&#1072;&#1073;&#1088;&#1103;';}

   if(day_of_week_number == 0){day_of_week = '&#1042;&#1086;&#1089;&#1082;&#1088;&#1077;&#1089;&#1077;&#1085;&#1100;&#1077;';}
   if(day_of_week_number == 1){day_of_week = '&#1055;&#1086;&#1085;&#1077;&#1076;&#1077;&#1083;&#1100;&#1085;&#1080;&#1082;';}
   if(day_of_week_number == 2){day_of_week = '&#1042;&#1090;&#1086;&#1088;&#1085;&#1080;&#1082;';}
   if(day_of_week_number == 3){day_of_week = '&#1057;&#1088;&#1077;&#1076;&#1072;';}
   if(day_of_week_number == 4){day_of_week = '&#1063;&#1077;&#1090;&#1074;&#1077;&#1088;&#1075;';}
   if(day_of_week_number == 5){day_of_week = '&#1055;&#1103;&#1090;&#1085;&#1080;&#1094;&#1072;';}
   if(day_of_week_number == 6){day_of_week = '&#1057;&#1091;&#1073;&#1073;&#1086;&#1090;&#1072;';}

   var date_to_show = day_of_week + ', ' + day_of_month + '-&#1077; ' + month;

   document.write('<font class=menu2>' + date_to_show + '</font>');
 
}

