function get_date()
{
	d=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");
	date=new Date();
	day=date.getDate();
	day=fill_zero(day, 2);
	month = date.getMonth()+1;
	month=fill_zero(month, 2);
	year=date.getYear();
	if (year < 2000) year=year+1900;
	TodaysDate=d[date.getDay()]+", "+day+"-"+month+"-"+year;
	document.write(TodaysDate);

}

function fill_zero(num, n)
{
	num=num.toString();
	l=num.length;
	for(i=1;i<(n-l)+1;i++)
	{
		num = "0" + num.toString();
	}
	return num;
}
