
    var topShowAdheight = 0; 
    function addCount_w()
    {
    	
        topShowAdheight = topShowAdheight + 5;
        if(topShowAdheight>223)  
        {
         document.getElementById("topFrame").style.height = "396px";
            return;
        }
        document.getElementById("topFrame").style.display = "";
        document.getElementById("topFrame").style.height = topShowAdheight+"px";
        setTimeout("addCount_w()",30); 
    }
    
    window.onload = function showAds_w()
    {
        addCount_w();
        setTimeout("noneAds_w()",10000);
    }


    var topAdheight = 223; 
    function noneAds_w()
    {
        topAdheight  = topAdheight -5;
        if(topAdheight <0)
        {
            document.getElementById("topFrame").style.display = "none";
            return;
        }
        document.getElementById("topFrame").style.height = topAdheight +"px";
        setTimeout("noneAds_w()",30); 
    }

