function display_title()
{
	var hours = date.getHours();
	var message = '';
	if (hours>= 6) {time_of_day = '  &nbsp; Доброе утро!'}
	if ((hours>= 12) && (hours<18)) {time_of_day = '  &nbsp; Добрый день!'}
	if (hours>= 17) {time_of_day = '  &nbsp;Добрый вечер!'}
	if ((hours>= 0) && (hours<6)){ time_of_day = '  &nbsp; Доброй ночи!'}
	document.write('' + time_of_day + '');
}
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 + ',&nbsp; ' + day_of_month + ' ' + month + '. ';
	document.write('' + date_to_show + '');
}


function countit(what)
{
formcontent=what.form.charcount.value
what.form.displaycount.value=formcontent.length
pages=formcontent.length/1800
what.form.pgcount.value=Math.max(pages, 1)
}
