function kadabra(tar,idElemento,idDestino) {

	var contenedor = document.getElementById(idDestino);
	var elemento = document.getElementById(idElemento);

	if(tar == 1)
		contenedor.style.display = "block";

	if(tar == 0)
		contenedor.style.display = "none";
}



function kadabra_1(idElemento) {

	var elemento = document.getElementById(idElemento);
	
	if(elemento.style.display == "block"){
		elemento.style.display = "none";
	}
	
	else if(elemento.style.display == "none"){
		elemento.style.display = "block";

	}
}