function printDate(){

	xingqi		= new Array('Sun','Mon','Tue','Wed','Thu','Fri','Sat');
	today		= new Date();
		theFyear	= today.getFullYear();
		theMonth	= today.getMonth() + 1;
		theDate		= today.getDate();
		theDay		= xingqi[today.getDay()];
	document.write(theFyear + "." + theMonth + "." + theDate + " (" + theDay + ") ");

}
