function ShowToday()
{
	var arrDays = new Array('Chủ nhật','Thứ hai','Thứ ba','Thứ tư','Thứ năm','Thứ sáu','Thứ bảy');
	today = new Date();
	strToday = arrDays[today.getDay()] +', ngày ' + today.getDate() + ' tháng ' + (today.getMonth()+1) +' năm ' + today.getYear();	
	document.write(strToday);
	}
