var METRICAS =
{
	debug			: false,
	frame_object		: null,
	frame_source		: null,
	setFrame:	function(oFrame,sSource)
	{
		this.frame_object=oFrame;
		this.frame_source=sSource;
	},
	reload	:	function()
	{		
		var iRand=new Date().getTime();
		if(this.frame_object){		
			//this.frame_object.location=this.frame_source+"&random="+iRand;	//VERSION QUE ALMACENA EN HISTORY
			this.frame_object.location.replace(this.frame_source+"&random="+iRand);	//VERSION QUE NO ALMACENA EN HISTORY
			
			//alert("refresh metricas");
		}		
	}

};

//alert("JSforMetrics v.0.2");