<!--

var Digital=new Date()
var hours=Digital.getHours()

if (hours>=5&&hours<=11) //5am-11am
	document.write('Good morning, and Welcome to The Van Dyke Lab Web page.>')
else if (hours==12) //noon
	document.write('Thanks for dropping by during lunch.')
	else if (hours>=13&&hours<=17) //1pm-5
		document.write('Good afternoon, and Welcome to The Van Dyke Lab Web page.')
		else if (hours>=18&&hours<=20) //6pm-8pm
			document.write('Good evening, and Welcome to The Van Dyke Lab Web page.')
			else if (hours>=21&&hours<=11) //9pm-11pm
				document.write('Welcome to The Van Dyke Lab Web page. Have a good night!')
				else //M12pm-4am
					document.write('Shouldnt you be sleeping?')
//-->