	function IsNumeric(input){
			var RE = /^-{0,1}\d*\.{0,1}\d+$/;
			return (RE.test(input));
		}		
		
	dato=document.location.pathname;
	
	//url /2009/10/11/... se convierten en /20091011/....
	miarray = dato.split("/"); 		
	if(IsNumeric(miarray[1])&&IsNumeric(miarray[2])&&IsNumeric(miarray[3]))	{
		dato = miarray[1] + miarray[2] + miarray[3] + dato.substring(11,dato.length);}
		
	if(dato=="/"){	
		dato = "home";
	}else{
		ult_car=dato.charAt(dato.length-1);
		if (ult_car == '/') {
			dato=dato.substring(0,dato.length-1);
		}
	}
		
	document.write('<script language="JavaScript" type="text/javascript">\n');
	document.write('<!-- \n');
	document.write('var terra_info_service = "OtroPE";\n');
	document.write('var terra_info_channel = "pe.entretenimiento.cinencuentro";\n');
	document.write('var terra_stats_idCrtfc = 201404;\n');
	document.write('var terra_info_channeldetail = "cinencuentro";\n');
	document.write('var terra_info_type = "www";\n');
	document.write('var terra_info_id = "' + dato + '";\n');

	document.write('//-->\n');
	document.write('</script>');

	document.write('<script type="text/javascript" charset="iso-8859-1" language="javascript" src="http://s1.trrsf.com/metrics/js/pe/contentpar.js"></script>');
	document.write('<script language="javascript">if(typeof terra_stats_metrics=="undefined"){var terra_stats_metrics=function(){window.setTimeout("terra_stats_metrics()",500);}}terra_stats_metrics();</script>');

