    window._GA_googleFillSlot = window.GA_googleFillSlot;
    window.GA_googleFillSlot = function(name)
    {
        var result = window._GA_googleFillSlot(name);
        
        // The actual fix
        var timout = 25;
        var id = 'google_ads_div_' + name + '_ad_container';
        function fix_dimensions()
        {
            var div_container = document.getElementById(id);
            if (div_container)
            {
                div_container.style.width = "auto"; 
                div_container.style.height = "auto";
            }
            else if (timout < 1000)
            {
                timout = timout * 2;
                window.setTimeout(fix_dimensions, timout);
            }
        }
        window.setTimeout(fix_dimensions, timout);
        
        return result;
    }

