function mostrar_noticia(cual, de){

	
	
	for(i=0; i<de ; i++){
		document.getElementById("noti"+i).style.display = "none";
	
	}
	document.getElementById("noti"+cual).style.display = "block";
	add_history()
	
}
function mostrar_condicion(cual, de){
	
	for(i=0; i<de ; i++){
		document.getElementById("cond"+i).style.display = "none";
	
		
		}
		document.getElementById("cond"+cual).style.display = "block";
			add_history()
	}