//截取日期中年份的长度
function AtricleDate(sDate)
{
	document.write(sDate.substr(2,2));
}