
function carga_meteo_interval(from, total){
	$.post("/ajax/eltemps.php",{ from:from, total:total },function(data){
			if(data != -1){
				$('#meteo_content_redis').html(data);
			}
		}
	);
	return false;

}

