﻿function getTodaysDate() {
//-------------------------------------------
// Today's Date
//-------------------------------------------
	var sFormatDate
	var ToDayDate = new Date() 
	var WeekDay = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
	var MonthName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
	sFormatDate = WeekDay[ToDayDate.getDay()] + " " + MonthName[ToDayDate.getMonth()] + " " + ToDayDate.getDate() + ", " + ToDayDate.getFullYear();
	return sFormatDate;
}
//-------------------------------------------
// Show the welcome in the header	
//-------------------------------------------
datetoday = new Date();
				timenow=datetoday.getTime();
				datetoday.setTime(timenow);
				thehour = datetoday.getHours();
				if (thehour > 16)
				{
					var time="Good Evening ";
				}
				else if (thehour > 11)
				{
					var time="Good Afternoon ";
				}
				else
				{
					var time="Good Morning ";
				}


