//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function Greeting()
{   //produces the dynamic welcome greeting seen at the top of this page.
	//the greeting varies with the time on the user's machine.
    //obviously, the greetings can be modified.
    //---ryan+++

	var greeting;
	var datenow=new Date();
	var hrnow=datenow.getHours();
	var minnow=datenow.getMinutes();
	var secnow=datenow.getSeconds();

	if(minnow<10)
		minnow="0"+minnow;

	if(secnow<10)
		secnow="0"+secnow;

	if(hrnow<12)
		greeting="Good Morning";

	else if(hrnow<17)
		greeting="Good Afternoon";

	else
		greeting="Good Evening";

    return greeting;
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++