// Gio he thong cua chonmua24h.com
function ServerTime(){
    var mydate = new Date()
    var year = mydate.getYear()
    if (year < 1000)
        year += 1900
    var month = mydate.getMonth() + 1
    if (month < 10)
        month = "0" + month
    var day = mydate.getDate()
    if (day < 10)
        day = "0" + day
    var dayw = mydate.getDay()
    var hour = mydate.getHours()
    if (hour < 10)
        hour = "0" + hour
    var minute = mydate.getMinutes()
    var seconds = mydate.getSeconds();
    if (minute < 10)
        minute = "0" + minute
    if (seconds < 10)
        seconds = "0" + seconds
    //var dayarray = new Array("Chủ Nhật", "Thứ 2", "Thứ 3", "Thứ 4", "Thứ 5", "Thứ 6", "Thứ 7")
    var time = hour + ":" + minute + ":" + seconds + " | " + day + "/" + month + "/" + year
    if (document.getElementById('ServerTime') != null)
        document.getElementById('ServerTime').innerHTML = time;    
    window.setTimeout("ServerTime()", 1000);
}

function setHomepage() {
    if (document.all) {
        document.body.style.behavior = 'url(#default#homepage)';
        document.body.setHomePage(base_url);
    }
    else {
        alert("Kéo Logo VFA vào nút Home bên cạnh thanh địa chỉ để đặt làm trang chủ");
    }
} 

