function get_date()
{
	 dayName = new Array ("Chủ nhật","Thứ hai","Thứ ba","Thứ tư","Thứ năm","Thứ sáu","Thứ bảy") 
        monName = new Array ("Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12") 
        now = new Date 
        //document.write("<font color=green size=4></b>Bây giờ là " +now.getHours()+ " giờ " +now.getMinutes()+ " phút " +now.getSeconds()+ " giây - "
       // +dayName[now.getDay()]+ " ngày " +now.getDate()+ " " +monName[now.getMonth()]+ " năm " +now.getFullYear()+ ".</b></font>") 
       document.write(" Ngày " +now.getDate()+ " " +monName[now.getMonth()]+ " Năm " +now.getFullYear()) 
	
}
function get_date_en()
{
	d=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"); 
	m=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"); 
	date=new Date(); 
	day=date.getDate(); 
	day=fill_zero(day, 2);
	month = date.getMonth();
	year=date.getYear();
	if (year < 2000) year=year+1900; 
	TodaysDate=""+d[date.getDay()]+" "+day+" "+m[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;
}
function WebLink(href)
{			
	if (href=='NA')
		return;
	else
	{
		fLink = window.open(href);
		fLink.focus();
    }
}