Javascript String toCorrectCase()
toCorrectCase()
String.prototype.toCorrectCase = function () { if(isNaN(this) && sys.id(this) !== undefined) { return sys.name(sys.id(this)); } else {/*from w w w .j a v a2 s .c om*/ return this; } };