	var dtm = new Date();
	var mon = new Array("th&#225;ng 1","th&#225;ng 2","th&#225;ng 3","th&#225;ng 4","th&#225;ng 5","th&#225;ng 6","th&#225;ng 7","th&#225;ng 8","th&#225;ng 9","th&#225;ng 10","th&#225;ng 11","th&#225;ng 12");
	var day = new Array("Ch&#7911; Nh&#7853;t","Th&#7913; Hai","Th&#7913; Ba","Th&#7913; T&#432;","Th&#7913; N&#259;m","Th&#7913; S&#225;u","Th&#7913; B&#7843;y");
	var yyy = dtm.getFullYear();
	var str = '<table class="titledate" width="100%" cellpadding=0 cellspacing=0>';
	str += '<tr><td class=titledate align=right height=10>';
	str += day[dtm.getDay()] + ", " + dtm.getDate() + " " + mon[dtm.getMonth()] + " n&#259;m " + yyy;
	str += "&nbsp;&nbsp;";
	str += '</td></tr></table>';
	document.write(str);

