﻿document.writeln("<script language=JavaScript> ");
document.writeln("	var mess1=\"\"; ");
document.writeln("	day = new Date( ) ");
document.writeln("	hr = day.getHours( ) ");
document.writeln("	if (( hr >= 0 ) && (hr <= 4 )) ");
document.writeln("	mess1= \"晚上好!\" ");
document.writeln("	if (( hr >= 4 ) && (hr < 7)) ");
document.writeln("	mess1=\" 清晨好!\" ");
document.writeln("	if (( hr >= 7 ) && (hr < 12)) ");
document.writeln("	mess1=\" 早上好!\" ");
document.writeln("	if (( hr >= 12) && (hr <= 17)) ");
document.writeln("	mess1= \"下午好!\" ");
document.writeln("	if ((hr >= 17) && (hr <= 23)) ");
document.writeln("	mess1= \"晚上好!\" ");
document.writeln("document.write(\"<blink>\") ");
document.writeln("document.write(mess1) ");
document.writeln("document.write(\"</blink>\") ");
document.writeln("</script>");
document.writeln("<script language=JavaScript> ");
document.writeln("    clientdate = new Date(); ");
document.writeln("    clientyear = clientdate.getYear(); ");
document.writeln("    if(clientyear < 300)clientyear = 1900 + clientyear ; ");
document.writeln("    clientmonth = clientdate.getMonth()+1; ");
document.writeln("    clientday = clientdate.getDate(); ");
document.writeln("    weekday = clientdate.getDay(); ");
document.writeln("    weeks = \"天一二三四五六\"; ");
document.writeln("    cday = weeks.substring(weekday,weekday+1); ");
document.writeln("document.write(clientyear+\"年\"+clientmonth+\"月\"+clientday+\"日\"+\" 星期\"+cday) ");
document.writeln("</script>");
