var validateDecDelim = '.';
var validateErrArray = new Array(
"Error", // 0
"Value is not Integer",  // 1
"Value is not Decimal. Decimals must be in the form 3.5 with . as decimal separator. ", // 2
"Invalid integer. Value must be in the range {0} to {1}.", // 3
"Invalid decimal. Value must be in the range {0} to {1}.", // 4
"Invalid Time format: Must be something like 13:50", // 5
"This field may not remain empty" // 6
);


