// START Author: Mik Escolme and Jamie Cheetham
// Please give us credit if you use this JavaScript
// Email Jamie at Jamie.Cheetham@btinternet.com or webmaster@softham.zzn.com

var message;
today=new Date();
hours=today.getHours();
if ((hours>=0) && (hours<=5))
	message="Good night";
if ((hours>5) && (hours<=12))
	message="Good morning";
if ((hours>12) && (hours<=18))
	message="Good afternoon";
if ((hours>18) && (hours<24))
	message="Good evening";
document.write("<H3 ALIGN=left>" + message + ",</H3>");

// END Author: Mik Escolme and Jamie Cheetham