function validation2() { foundError = false; checked = false; showError = false; if(no_num()){ alert("Digite sólo números para el NIT"); document.forma2.nitso.focus(); document.forma2.nitso.select(); foundError = true; showError = true; } if(vacio(document.forma2.nitso) && showError == false){ alert("Digite el Nit"); document.forma2.nitso.focus(); document.forma2.nitso.select(); foundError = true; showError = true; } if(foundError == false){ return true; } else{ return false; } } function no_num() { inStr = document.forma2.nitso.value; inLen = inStr.length; for(var i=0; i function vacio(theField) { if(theField.value == "") return true; inStr = theField.value; inLen = inStr.length; for(var i=0; i