// JavaScript Document
function MM_openBrWindow(theURL) { //v2.0
  window.location=theURL;
}
function fEvent(sType,oInput){
		switch (sType){
			case "mouseover" :
				oInput.className= 'menu01B';
				break;
			case "mouseout" :
					oInput.className= 'menu01';
					break;
		}
	}

function LoadFlash(wmode,url,width,Height)
{ 
document.write(
'<embed src="' + url + '" wmode=' + wmode +
' quality="high" pluginspage=http://www.macromedia.com/go/getflashplayer type="application/x-shockwave-flash" width="' + width + 
'" height="' + Height + '"></embed>'); 
}
	var now = new Date();

	var now_hour = now.getHours();

	var helloword = "";

	if (now_hour > 4 && now_hour < 10) {

		helloword = "早上";

	} else if (now_hour >= 10 && now_hour < 12) {

		helloword = "上午";

	} else if (now_hour >= 12 && now_hour < 14) {

		helloword = "中午";

	} else if (now_hour >= 14 && now_hour < 18) {

		helloword = "下午";

	} else if (now_hour >= 18 || now_hour < 14) {

		helloword = "晚上";

	}

	var weekday=["日","一","二","三","四","五","六"]
