<!-- Hide the script from old browsers --
today = new Date()
if(today.getMinutes() < 10){ 
pad = "0"}
else 
pad = "";
document.write ;
if((today.getHours() >=0) && (today.getHours() <=4)){
document.write("Доброй ночи, уважаемый читатель!")
}
if((today.getHours() >=5) && (today.getHours() <=10)){
document.write("Доброе утро, уважаемый читатель!")
}
if((today.getHours() >=11) && (today.getHours() <=18)){
document.write("Добрый день, уважаемый читатель!")
} 
if((today.getHours() >=19) && (today.getHours() <=24)){
document.write("Добрый вечер, уважаемый читатель!")
}
// -- End Hiding Here -->