﻿
<!--
{
	helixtime = new Date()
	hrstime = helixtime.getHours()
	if (hrstime < 7){timemsg = "<h1>Good morning...</h1>"}
	if (hrstime > 6 && hrstime <12){timemsg = "<h1>Good morning...</h1>"}
	if (hrstime > 11 && hrstime <18){timemsg = "<h1>Good afternoon...</h1>"}
	if (hrstime >17){timemsg = "<h1>Good evening...</h1>"}
	document.write(timemsg)}
// -->