<!--
var isnMonths=new initArray("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月");
var isnDays=new initArray("星期日","星期一","星期二","星期三","星期四","星期五","星期六","星期日");
today=new Date();

function initArray()
{
	for(i=0;i<initArray.arguments.length;i++)
	this[i]=initArray.arguments[i];
}

function getFullYear(d)
{//d is a date object
	yr = d.getYear();
	if(yr<1000)	yr += 1900;
	return yr;
}
document.write(getFullYear(today) +"年"  +"" + isnMonths[today.getMonth()] + "" + today.getDate()+"日&nbsp;"+ isnDays[today.getDay()]+ " ");

now = new Date(),hour = now.getHours() 
if(hour < 6){document.write("凌晨好!")} 
else if (hour < 9){document.write("早上好!")} 
else if (hour < 12){document.write("上午好!")} 
else if (hour < 14){document.write("中午好!")} 
else if (hour < 17){document.write("下午好!")} 
else if (hour < 19){document.write("傍晚好!")} 
else if (hour < 22){document.write("晚上好!")} 
else {document.write("夜里好!")} 
//-->






