 function validarInt(id) {
     var error = '';
     elemento = document.getElementById(id);
	 if(elemento.value=="")
	 {
		return false;
	 }

     var re = /^(-)?[0-9]*$/;
     if (!re.test(elemento.value)) {
         		return false;
     }
		return true;
 }


function validarFormularioBusqueda()
{
    if(!validarInt('altura'))
    {
        alert("Debe ingresar solo numeros enteros. (sin decimales)");
        return false;
    }
    
    if(!validarInt('caudal'))
    {
        alert("Debe ingresar solo numeros enteros. (sin decimales)");
        return false;
    }
    
    return true;
}
