function jsMinimaLongitudVariable(formulario, campos, longitudes, mensaje){var i = 0; var numeroCampos = campos.length; var salir = false; var c; while ((i < numeroCampos) && (!salir)){ c = campos[i]; if (formulario.elements[c].value.length < longitudes[i]) { alert(mensaje); if (formulario.elements[c].type != 'hidden')formulario.elements[c].focus(); salir = true; } i++; } return (!salir); }

