function addStat(WRP_SECTION, WRP_SUBSECTION, WRP_CONTENT, LOGGED, YEAR, SEXO, MOVIL){
	
	
	if(WRP_SUBSECTION!="undefined") var w_compteur = new wreport_counter(WRP_SECTION, WRP_SUBSECTION, 414671);
	else var w_compteur = new wreport_counter(WRP_SECTION, WRP_SECTION+"_home", 414671);
	if(WRP_CONTENT!="undefined"){		
		w_compteur.add_content(WRP_CONTENT);
	} else {
		w_compteur.add_content(WRP_SECTION+"_informacion");
	}
	
	w_compteur.profiling_cookie_mode = 'off';
	w_compteur.delete_profiles();

	if(LOGGED=="true"){		
		w_compteur.add_profile( 1, 'AJ');
		w_compteur.add_profile( 2, setSEX(SEXO));
		w_compteur.add_profile( 3, String(setRangeYear(YEAR)));
		
		w_compteur.add_profile( 4, setMovil(MOVIL));
		//w_compteur.add_profile( 5, setCS2(CS2));
	
		
	}else if (LOGGED=="false"){

		w_compteur.add_profile( 1, 'AK');
		w_compteur.add_profile( 2, "");
		w_compteur.add_profile( 3, "");
		w_compteur.add_profile( 4, "");
		w_compteur.add_profile( 5, "");
	}
	w_compteur.count();
}
function setMovil(movil){
	if(movil=="true") return "AN";
	else return "AO";
}

function setSEX(sexo){
	if(sexo=="false") return "AL";
	else return "AM";
}
/*
function setCS2(CS2){
	if(CS2=="false") return "AP";
	else return "AQ";
}
*/
function setRangeYear(year){
	var currentTime=new Date();
	var anyo=year.split("/")[2];
	var anyoACT=currentTime.getFullYear();
	var edad=anyoACT-anyo;
	///alert(edad+" anyo"+anyo+" act"+anyoACT);
	if(edad>=18 && edad< 25){
		return "AA";
	}else if(edad>=25 && edad<35){
		return "AB";
	}else if(edad>=35 && edad<45){
		return "AC";
	}else if(edad>=45 && edad<55){
		return "AD";
	}else if(edad>=55 && edad<65){
		return "AE";
	}else if(edad>=65 && edad<75){
		return "AF";
	}else if(edad>=75 && edad<85){
		return "AG";
	}else if(edad>=85 && edad<95){
		return "AH";
	}else if(edad>=95 && edad<105){
		return "AI";
	}else{
		return "menor-de-edad";
	}
}

