var msgValidate = {
		required:      "{fieldname} is a required field",
		numeric:       "{fieldname} must contain only numbers",
		alpha:         "{fieldname} must contain only letters",
		alphanumeric:  "{fieldname} must contain only letters and/or numbers",
		maxlength:     "{fieldname} can not be greater than {max} characters",
		minlength:     "{fieldname} can not be less than {min} characters",
		max:           "{fieldname} can not be greater than {max}",		
		min:           "{fieldname} can not be less than {min}",	
		date:          "{fieldname} not have a valid date",
		dateCompare:   "{fieldname} must have a date {operator} of {fieldnameCompare}",
		time:          "{fieldname} not have a valid time",
		timeCompare:   "{fieldname} should take one hour {operator} of {fieldnameCompare}",
		valueCompare:  "{fieldname} must have a value {operator} of {fieldnameCompare}",
		length:        "{fieldname} must contain only {length} characters",
		notExists:     "{fieldname} does not exist",
		email:         "{fieldname} is not a valid email address",
		hour:		   "{fieldname} is not a valid time",		
		phone:         "{fieldname} is not a valid phone number",
		creditcard:    "{fieldname} is not a valid credit card number",		
		great:         "greater",
		less:          "less",
		greatOrEqual:  "great or equal",
		lessOrEqual:   "less or equal",
		equal:         "equal",
		notEqual:      "different"	
};
