// JavaScript Document

function mostrarBuscarPor(filtro, idBuscador, idDropdown) {
	var elementoBusqueda = document.getElementById(idBuscador);
	if (elementoBusqueda != null) {
		elementoBusqueda.innerHTML = document.getElementById(filtro).innerHTML;

	}
	var opciones = document.getElementById(idDropdown);
	if (opciones != null) {
		opciones.style.display = 'none';
	}
	
}
function desplegarOpciones(idDropdown) {
	var opciones = document.getElementById(idDropdown);
	if (opciones != null) {
		opciones.style.display = 'inline';
	}
}
function ocultarOpciones(idDropdown) {
	var opciones = document.getElementById(idDropdown);
	if (opciones != null) {
		opciones.style.display = 'none';
	}
}

function ocultarOpcionesT(idObjeto) {	
	tempo = setTimeout("ocultarOpciones('"+idObjeto+"')", 200);
}
