// JavaScript Document
/*-----------------------------*/
var url = 'http://' + window.location.host + '/';
function setHomePage(){
    if(document.all){
        var homepage = document.getElementById('game360_homepage');
		//alert(homepage);
        if(!homepage)
            return;
        var ishp = false;
       
            if(homepage.isHomePage('http://game360.vn/'))
            {
                ishp = true;
               // break;
            }
       
        if(!ishp){
            homepage.style.behavior='url(#default#homepage)';            
            homepage.setHomePage(url);                  /*Set homepage*/
        }
    }
    else
        alert('Chọn Tools > Option > Main > Use Current Page (Alt+C) để đặt trang chủ!');
};
function addFavorite(){
    var title='Game360.vn';
    for(var i=0;i<ZingD.length;i++)                     /*Check homepage*/
    {
        if(url.indexOf(ZingD[i])>-1)
        {
            title = ZingT[i];
            break;
        }
    }  
    if(document.all)
        window.external.AddFavorite(url,title);
	else if (window.sidebar)
        window.sidebar.addPanel(title, url, "")
};
