maxim = 28;
delay = 2;
velocidad = 3;
//-- variables de tamaņo de layer
heigh_min = 1;
heigh_max = 28;
abierta_actual = "";

function abre(id){
	//abrimos layer
	elhtml = document.getElementById(id);
	elhtml.style.height = heigh_max;
	elhtml.style.visibility = 'visible';
	abierta_actual = id;
}
function cierra(id){
	//cerramos layer
	elhtml = document.getElementById(id);
	elhtml.style.height = heigh_min;
	elhtml.style.visibility = 'hidden';
}
function busca_abierta(id){
	elhtml = document.getElementById(id);
	var px = elhtml.style.height;
	var pos = px.indexOf("p");
	var altura = px.substring(0,pos);
	var aux = new Number(altura);
	if(aux==heigh_max) {
		return(true);
	}else{
		return(false);
	}
}
function accion(id){
	abierta = busca_abierta(id);
	if (abierta==false){
		if(abierta_actual == ''){
			abre(id);
		}else{
			cierra(abierta_actual);
			abre(id);
		}
	}else{ 
		cierra(id);
	}
}