function control_frm_busquedas(formulario, idioma) {
	var todo_ok = true;

	if (formulario.criterio_palabras.value == "" && formulario.criterio_marcas.value == 0) {
		if (idioma == 'es') {
			alert ('Se debe indicar al menos una palabra clave o una marca para la búsqueda');
		} else {
			alert ('You must indicate at least one keyword or one brand to perform the search');
		}
		formulario.criterio_marcas.focus();
		todo_ok = false;
	}

	return (todo_ok);
}
