function dayTime()
			{
				var days = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
				var mons = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
				var now = new Date();
				var yy = now.getFullYear();
				var mm = now.getMonth(); mm = mons[mm];
				var dd = now.getDate();	
				var dy = now.getDay(); dy = days[dy];
				var all = (dy + ", " + mm + " " + dd + ", " + yy);
				var nowT = new Date();
				var hh = nowT.getHours(); if (hh <= 9) hh = "0" + hh;
				var mn = nowT.getMinutes(); if (mn <= 9) mn = "0" + mn;
				var ss = nowT.getSeconds(); if (ss <= 9) ss = "0" + ss;
				var tt = hh + ":" + mn + ":" + ss;
				
				// Style Date textbox (dayT)
				document.dDay.dayT.style.backgroundColor = "#6a84b0";
				document.dDay.dayT.style.fontSize = "10px";
				document.dDay.dayT.style.color = "white";
				document.dDay.dayT.style.fontFamily = "verdana";
				document.dDay.dayT.style.fontWeight = "bold";
				document.dDay.dayT.style.textAlign = "center";
				document.dDay.dayT.style.borderStyle = "none";
				document.dDay.dayT.focus = "false";
								
				// Style Time textbox (tDay)
				document.dDay.tDay.style.backgroundColor = "#6a84b0";
				document.dDay.tDay.style.fontSize = "10px";
				document.dDay.tDay.style.color = "white";
				document.dDay.tDay.style.fontFamily = "verdana";
				document.dDay.tDay.style.fontWeight = "bold";
				document.dDay.tDay.style.textAlign = "center";
				document.dDay.tDay.style.borderStyle = "none";
				document.dDay.tDay.focus = "false";
				
				document.dDay.dayT.value = all;
				document.dDay.tDay.value = tt;
				window.setTimeout("dayTime()", 1000);
											
			}
			


