| 
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281 | 
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
 | 
-
-
-
-
+
 | 
        }
        if (sWord.charAt(0).gl_isUpperCase()) {
            if (sWord.length > 1) {
                if (sWord.gl_isTitle()) {
                    return !!this.lookup(sWord.toLowerCase());
                }
                if (sWord.gl_isUpperCase()) {
return !!(this.bAcronymValid || this.lookup(sWord.toLowerCase()) || this.lookup(sWord.gl_toCapitalize()));
                }
                return !!this.lookup(sWord.slice(0, 1).toLowerCase() + sWord.slice(1));
            }
            return !!this.lookup(sWord.toLowerCase());
        }
        if (sWord.slice(0,1).gl_isDigit()) {
            return true;                    if (this.bAcronymValid) {                        return true;                    }return !!(this.lookup(sWord.toLowerCase()) || this.lookup(sWord.gl_toCapitalize())); |