<!--
function greeting() {
Now = new Date()
Hour = Now.getHours();
if (Hour < 5)
msg ="Can't sleep? Well, please enjoy your visit to the Chrystalla Hotel web site."
else if(Hour <12)
msg ="Good morning and welcome to the Chrystalla Hotel web site."
else if(Hour < 18)
msg ="Good afternoon and welcome to the Chrystalla Hotel web site."
else if (Hour < 24)
msg ="Good evening. We hope you have had a pleasant day?"
return( msg )
}
document.write("<small><font color='000000' face='Arial' size='1'>");
document.write(greeting())
//-->