function UserLocale() {
this.DECIMALSYMBOL = ".";
this.GROUPINGSYMBOL = ",";
this.DIGITSINGROUP = "3";
this.DIGITSAFTERDEC = "2";
this.NEGSYMBOL = "-";
this.POSSYMBOL = "+";
this.NEGFORMAT = "1";
this.POSFORMAT = "0";
this.DATESTYLE = "mm/dd/yyyy";
this.DATEPARTS = ["mm","dd","yyyy"];
this.DATESEPARATOR = "/";
this.TIMESTYLE = "0";
this.MERIDIANPOS = "0";
this.TIMESEPARATOR = ":";
this.CURRDECIMALSYMBOL = ".";
this.CURRGROUPINGSYMBOL = ",";
this.CURRDIGITSINGROUP = "3";
this.CURRDIGITSAFTERDEC = "2";
this.CURRNEGFORMAT = "0";
this.CURRPOSFORMAT = "0";
this.MONTHSHORT = SHORT_MONTHS;
this.MONTHLONG = LONG_MONTHS;
this.DAYTINY = TINY_DAYS;
this.DAYSHORT = SHORT_DAYS;
this.DAYLONG = LONG_DAYS;
this.DURATIONDAYS = 'd';
this.DURATIONHOURS = 'h';
this.DURATIONMINUTES = 'm';
this.FIRSTDAYOFWEEK = 0;
}
UL = new UserLocale();
