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 = 'января';}
if(month_number == 1){month = 'февраля';}
if(month_number == 2){month = 'марта';}
if(month_number == 3){month = 'апреля';}
if(month_number == 4){month = 'мая';}
if(month_number == 5){month = 'июня';}
if(month_number == 6){month = 'июля';}
if(month_number == 7){month = 'августа';}
if(month_number == 8){month = 'сентября';}
if(month_number == 9){month = 'октября';}
if(month_number == 10){month = 'ноября';}
if(month_number == 11){month ='декабря';}
if(day_of_week_number == 0){day_of_week = 'воскресенье';}
if(day_of_week_number == 1){day_of_week = 'понедельник';}
if(day_of_week_number == 2){day_of_week = 'вторник';}
if(day_of_week_number == 3){day_of_week = 'среда';}
if(day_of_week_number == 4){day_of_week = 'четверг';}
if(day_of_week_number == 5){day_of_week = 'пятница';}
if(day_of_week_number == 6){day_of_week = 'суббота';}
var date_to_show = day_of_week + ', ' + day_of_month + ' ' + month + ', ' + year + ' года';
document.write( date_to_show );
}
