function printdate()
{
  youbi = new Array("日","一","二","三","四","五","六");
	myDate = new Date();
	thedate = myDate.getDate();
	theday = youbi[myDate.getDay()];
	thefyear = myDate.getFullYear();
	themonth = myDate.getMonth() + 1;
	document.write(thefyear+"年"+themonth+"月"+thedate+"日"+" <font color=blue>( 星期"+theday+" )</font>");
}
