//
// AdvertGoogle
//
FVWebComponent.AdvertGoogle = function(id, config) {
    this.dimensions = config["dimensions"];
    this.init(id, config);
}

FVWebComponent.AdvertGoogle.prototype = new FVWebComponent.Advert;

FVWebComponent.AdvertGoogle.prototype.init = function (id, config) {
    FVWebComponent.Advert.prototype.init.call(this, id, config);    
}

FVWebComponent.AdvertGoogle.prototype.handleFVWebComponentEvent = function (type, args, me) {
    //alert("AdvertGoogle (" + me.id + ") is handling event: " + args[0].toString());
}

FVWebComponent.AdvertGoogle.prototype.clear = function () {
}


FVWebComponent.AdvertGoogle.prototype.refresh = function () {    
}
