function indicadores()
{
function formatear_numero2(numero)
	{
	 var nroFormateado = '';
			var indice=0;
			var band=false;
	 var numero2 = new String(numero);
	 for (i=0;i<=numero2.length && indice<=2;i++){
	  if ( numero2.charAt(i)=="." || numero2.charAt(i)==","){
	   nroFormateado = formato_miles(nroFormateado) + ",";
							band=true;  
	  }else{
	   nroFormateado = nroFormateado +  numero2.charAt(i);
	  }
	  if(band)
		indice++;
	 }
	 return nroFormateado;
	}	
	//alert('paso');	

		if(typeof(arrValores) != "undefined")
		{
			if(typeof(arrValores[55])=="object")
				document.getElementById('dolar').innerHTML=formatear_numero(arrValores[55].valor2);
				
			/*if((typeof(arrValores[8])=="object") && (typeof(arrValores[55])=="object"))
			{
			var xRealValor=parseFloat(arrValores[55].valor2)/(parseFloat(1) / parseFloat(arrValores[8].venda));		
			document.getElementById('euro').innerHTML=formatear_numero2(xRealValor);
			}	*/
			if(typeof(arrValores[4])=="object")
				document.getElementById('uf').innerHTML=(formatear_numero(arrValores[4].valor2));
	
	
			/*if(typeof(arrValores[19])=="object")
				document.getElementById('ipsa').innerHTML=(formatear_numero(arrValores[19].valor2));*/
					
			if(typeof(arrValores[5])=="object")
				document.getElementById('utm').innerHTML=(formatear_numero(arrValores[5].valor2));				
				
		}
}
