function display_title() {
var hours = date.getHours(); 
var message = '';
if ((hours >= 5) && (hours < 12)) { hi = 'Доброе утро,';}
if ((hours >= 12) && (hours < 18)) { hi = 'Добрый день,';}
if (hours >= 18) { hi = 'Добрый вечер,';} 
if ((hours >= 0) && (hours < 5)) { hi = 'Хорошая ночь,';} 
document.write('' + hi + '');
}
function display_date() {
date = new Date();
}
display_date();
display_title();