todayDate = new Date();
date = todayDate.getDate();
month= todayDate.getMonth() +1;
year= todayDate.getYear();
//document.write("<font color=#FF5D00>您好！</font><font color=#008200>今天是</font>&nbsp;<font color=#FF0000>")
document.write("<font color=#ffffff>")
document.write("您好！今天是&nbsp;")
if(navigator.appName == "Netscape")
{
	document.write(1900+year);
	document.write("年");
	document.write(month);
	document.write("月");
	document.write(date);
	document.write("日");
	document.write("&nbsp;");

}


if(navigator.appVersion.indexOf("MSIE") != -1)
{
document.write(year);
document.write("年");
document.write(month);
document.write("月");
document.write(date);
document.write("日");
	document.write("&nbsp;");
}
//	document.write("</font><font color=#008200>");

if (todayDate.getDay() == 5) document.write("星期五")
if (todayDate.getDay() == 6) document.write("星期六")
if (todayDate.getDay() == 0) document.write("星期日")
if (todayDate.getDay() == 1) document.write("星期一")
if (todayDate.getDay() == 2) document.write("星期二")
if (todayDate.getDay() == 3) document.write("星期三")
if (todayDate.getDay() == 4) document.write("星期四")

document.write ("</font>");
