function writeDate() {
	time=new Date();
	year=time.getYear();
	if (year < 2000) year = year + 1900;
	document.write("<center>"
		+ year + "年"
		+ (time.getMonth()+1) + "月"
		+ time.getDate() + "日</center>");
}

function writeAddress() {
 document.write('地址:17 Gordon Ave. Scarborough, ON M1S 1A6, Canada &nbsp;&nbsp; 电话:416-609-1876 &nbsp; 电子邮箱:info&#64;<span>tsbc.</span>org');
}

