function Buscar_Casas(url_action)
{
    error = false;
	if ((!error)&&(form_casas_renta.precio_internet.value!=''))
    {
	   if ((!isInteger(form_casas_renta.precio_internet.value))||(form_casas_renta.precio_internet.value==0)||(form_casas_renta.precio_internet.value>999))
	   {
		  alert('The price must be a number greather than 0 and no more than 3 digits.');
		  form_casas_renta.precio_internet.value='';
		  form_casas_renta.precio_internet.focus();
		  error = true;
	   }
    }
	if (!error)
    {
	   form_casas_renta.action=url_action;
	   form_casas_renta.submit();
    }
}