   var time = 8000;
    var h = 0;
    function addCount()
    {
        if(time>0)
        {
            time--;
            h = h+5;
        }
        else
        {
            return;
        }
        if(h>500)  //高度
        {
            return;
        }
        document.getElementById("advv").style.display = "";
        document.getElementById("advv").style.height = h+"px";
        setTimeout("addCount()",30); 
    }
    
    window.onload = function showadvv()
    {
        addCount();
        setTimeout("noneadvv()",8000); //停留时间自己适当调整
    }
    var T = 500;
    var N = 500; //高度
    function noneadvv()
    {
        if(T>0)
        {
            T--;
            N = N-5;
        }
        else
        {
            return;
        }
        if(N<0)
        {
            document.getElementById("advv").style.display = "none";
            return;
        }
        
        document.getElementById("advv").style.height = N+"px";
        setTimeout("noneadvv()",30); 
    }
document.write('<div id="advv" style="display:none;width:1004px; height:0px;overflow:hidden;text-align:center;"><img src="/defaultroot/front/images/3.jpg" border="0" ></div>');