    var time = 500;
    var h = 0;
    function addCount()
    {
        if(time>0)
        {
            time--;
            h = h+10;
        }
        else
        {
            return;
        }
        if(h>120)  //高度
        {
            return;
        }
        document.getElementById("ads").style.display = "";
        document.getElementById("ads").style.height = h+"px";
        setTimeout("addCount()",30); 
    }
    
    window.onload = function showAds()
    {
        addCount();
        setTimeout("noneAds()",15000); //停留时间自己适当调整
    }

    var T = 970;
    var N = 120; //高度
    function noneAds()
    {
        if(T>0)
        {
            T--;
            N = N-10;
        }
        else
        {
            return;
        }
        if(N<0)
        {
            document.getElementById("ads").style.display = "none";
            return;
        }
        
        document.getElementById("ads").style.height = N+"px";
        setTimeout("noneAds()",30); 
    }
document.write('<div id=\"ads\" style=\"margin:auto; display:none; top:0px; height:0px; background-color:#fafafa; overflow:hidden; text-align:center;\"><td width=\"970\" align=center><a href=\"http://www.oct66.com/\" target=\"_blank\"><img src=\"http://www.oct66.com/THEMES/huoyun/STYLE/images/topad.jpg\" width=\"970\" height=\"120\" border=\"0\"></a></td></div>');
