 
 var T = 260;
    var N = 0; //高度
    function noneAds()
    {
       
            document.getElementById("ads").style.display = "none";
			//document.getElementById("ads1").style.display = "inline";

        document.getElementById("ads").style.height = N+"px";

    }


var url = location.href;
if(url=="http://www.xj-zp.com/"){
	var time = 500;
    var h = 260;
    function addCount()
    {
       
        document.getElementById("ads").style.display = "";
        document.getElementById("ads").style.height = h+"px";

    }
    
    window.onload = function showAds()
    {
        addCount();
        setTimeout("noneAds()",8000); //停留时间自己适当调整
    }
   
}

