var Comunique = {
	_pub_id:'ca-pub-3828975654388241',
	_slots:[],
	_used_slots:[],
	isIE: function(){
		return (navigator.appName == 'Microsoft Internet Explorer');
	},
	hasSlot:function(slot){
		for (key in this._slots) {
			if (this._slots[key] === slot) {
				return true;
			}
		}
		return false;
	},
	usedSlot:function(slot){
		for (key in this._used_slots) {
			if (this._used_slots[key] === slot) {
				return true;
			}
		}
		return false;		
	},
	tag:function(slot){
		if(window['hide' + slot] != undefined) return;
		/*
		if(this.isIE()){
			var m = slot.match(/(\d+)x(\d+)/);
			GA_googleFillSlotWithSize(this._pub_id, slot, m[1], m[2]);
			//GA_googleFillSlot(slot);
			return;
		}
		*/
		if(!this.hasSlot(slot)) return;
		if(this.usedSlot(slot)) return;
		this._used_slots[this._used_slots.length] = slot;
		//if(this.isIE()) document.write('<style type="text/css" media="screen">#google_ads_div_' + slot + '_ad_container{display:none;}</style>')
		GA_googleFillSlot(slot);
	},
	setSection:function(section){
		GA_googleAddAttr("Seccao", section);
	},
	setAttr:function(name, value){
		GA_googleAddAttr(name, value);
	},
	setSlot:function(slot){
		this._slots[this._slots.length] = slot;
		GA_googleAddSlot(this._pub_id, slot);
	}
}

if(Comunique.isIE() && false){
	GA_googleUseIframeRendering();	
}else{
		Comunique.setSlot("RadioNova300x250");	
		GA_googleFetchAds();
}
