/* Copyright © 2001-2011 Konstantin Marchenko */

var d;
d = new Date();

if (d.getHours () > 3 && d.getHours () < 12)
	window.document.write ("<P align = center> <FONT COLOR = RED SIZE = 6> Good Morning !  </FONT> </P>");
else if (d.getHours () >= 12 && d.getHours () < 18)
	window.document.write ("<P align = center> <FONT COLOR = RED SIZE = 6> Good Afternoon! </FONT> </P>");
else
	window.document.write ("<P align = center> <FONT COLOR = RED SIZE = 6> Good Evening!   </FONT> </P>");

