// JavaScript Document
			function ShowDateTime()
			{
				var nowDate,theDate,theDay,theYear,theMonth,theHour,theMin,theSec,timeValue;
				weeks = new Array("日","一", "二","三","四","五","六");
				nowDate = new Date();

				theDate = nowDate.getDate();
				theDay = weeks[nowDate.getDay()];
				theYear = nowDate.getYear();
				theMonth = nowDate.getMonth() + 1;
				theHour = nowDate.getHours();
				theMin = nowDate.getMinutes(); if (theMin < 10) theMin = "0"+theMin;  // 小於 10 分补 0
				theSec = nowDate.getSeconds(); if (theSec < 10) theSec = "0"+theSec;  // 小於 10 秒补 0
				timeValue=theYear+"年"+theMonth+"月"+theDate+"日 "+"星期"+theDay+" "+theHour+":"+theMin+":"+theSec;
				clock.innerHTML = timeValue;
				setTimeout("ShowDateTime()",1000);
			}

