// JavaScript Document
function verMas(enlace){
	var c = document.getElementById('contenFicha2');
	if(c.style.overflow=='visible')
		{
		c.style.height='216px';		
		c.style.overflow='hidden';
		
		}
		else
		{						
			c.style.height='auto';
			c.style.overflow='visible';						
		}

	enlace.parentNode.removeChild(enlace);
	ckPFoot();
	}
	

var arrDiv = []
	
arrDiv = ["ficha1","ficha2","ficha3","ficha4"]

function showDiv(seleccion){
var obj =  document.getElementById(seleccion);
for (var aa=0;aa<arrDiv.length;aa++){
	
	if (obj.id == arrDiv[aa]){
			var showObj = document.getElementById(arrDiv[aa]);
			showObj.style.display = "block";
		}else{
			var showObj = document.getElementById(arrDiv[aa]);
			showObj.style.display = "none";
		}
	}
	ckPFoot();
}