// JavaScript Document

function envia_datos(descripcion, id, etiqueta){
	document.getElementById(etiqueta).value = id;
	/// cortar el texto si esta muy largo
	document.getElementById(etiqueta+'_txt').innerHTML = descripcion.substring(0, 32);
	document.getElementById('capacombo_'+etiqueta).style.display = 'none';
	document.getElementById(etiqueta+'_txt').style.color='#00693e';
}

var capas = new Array('id_producto','autor','id_coleccion','id_genero');
function muestra_capacombo(id_capacombo){
	if(document.getElementById('capacombo_'+id_capacombo).style.display == 'block'){
		document.getElementById('capacombo_'+id_capacombo).style.display = 'none';
	}else{
		for(var i=0; i<capas.length; i++){
			if(id_capacombo == capas[i]){
				document.getElementById('capacombo_'+capas[i]).style.display = 'block';
			}else{
				document.getElementById('capacombo_'+capas[i]).style.display = 'none';
			}
		}
			
	}
}

function muestra_capacombo_aux(id_capacombo){
	if(document.getElementById('capacombo_'+id_capacombo).style.display == 'block'){
		document.getElementById('capacombo_'+id_capacombo).style.display = 'none';
	}else{
		document.getElementById('capacombo_'+id_capacombo).style.display = 'block';		
	}
}

function cierra_capacombo(id_capa){
	document.getElementById(id_capa).style.display = 'none';
}
