/* Incluido en:
	- /w/filtrosOfertasLucene.cfm
	- /w/filtrosDemandasLucene.cfm
 */
function ValidaPrecio(form,sUrl){
	if(form.pmin.value.length == 0) iMinPrecio=0;
	else iMinPrecio=form.pmin.value;
	if(form.pmax.value.length == 0) iMaxPrecio=0;
	else iMaxPrecio=form.pmax.value;
	form.btnFiltrar.disabled=true;
	form.btnFiltrar.value="Filtrando...";
	
	location.href=sUrl.replace("filtroMinPrecio",iMinPrecio).replace("filtroMaxPrecio",iMaxPrecio);
	return false;
}
 