//<Script language="javascript" type="text/javascript">
<!--
{
			var font  = "Arial";
			var fsize = "2";
			var now   = new Date();
			var month = "";
			var year  = "";
			var date  = now.getDate();
			if (now.getMonth() == 0) month = "January"
			if (now.getMonth() == 1) month = "February"
			if (now.getMonth() == 2) month = "March"
			if (now.getMonth() == 3) month = "April"
			if (now.getMonth() == 4) month = "May"
			if (now.getMonth() == 5) month = "June"
			if (now.getMonth() == 6) month = "July"
			if (now.getMonth() == 7) month = "August"
			if (now.getMonth() == 8) month = "September"
			if (now.getMonth() == 9) month = "October"
			if (now.getMonth() == 10) month = "November"
			if (now.getMonth() == 11) month = "December"
			if (now.getYear() ) year = now.getFullYear()
			document.write('<font color="black" + font size="' + fsize + '" face="' + font + '">' + month + " " + date + ", " + year)
		
			
			
<!-- Script for day time confirmation -->
//<script language = "javascript" type = "text/javascript"> 


	now = new Date
	if (now.getHours() < 5)
	 {document.write(" - You are up very late, Night Owl!")}
	else if (now.getHours() < 12) 
	 {document.write(" - Good Morning")}
	else if (now.getHours() < 16)
	 {document.write(" - Good Afternoon")}
	else 
	 {document.write(" - Good Evening")}
}
//-->



