function getLabel(sLabel){
	switch (sLabel){
		case "alphanumeric":
			return "The field can only contain numbers and letters.";
			break;
			
		case "alphanumericcomma":
			return "The field can only contain numbers, letters and commas.";
			break;
			
		case "alphanumericspace":
			return "The field can only contain numbers, letters and spaces.";
			break;
			
		case "alphanumericunderscore":
			return "The field can only contain numbers, letters and underscores.";
			break;
			
		case "datemmddyyyy":
			return "The field is not a valid date.";
			break;
			
		case "dir_exists":
			return "The folder already exists.";
			break;
			
		case "email":
			return "The field is not a valid email address.";
			break;
			
		case "emailto":
			return "The field may only email addresses and semi-colon";
			break;
			
		case "file_exists":
			return "The file already exists.";
			break;
			
		case "file_overwrite":
			return "The file already exists and will be overwriten.";
			break;
			
		case "numeric":
			return "The field can only contain numbers.";
			break;
			
		case "numericdecimal":
			return "The field can only contain numbers and decimals.";
			break;
			
		case "numericgreaterthanorequal":
			return "The field must be less then or equal the other field and may only contains numbers.";
			break;
			
		case "passwordmatch":
			return "Your passwords do not match.";
			break;
			
		case "phonenumber":
			return "The field is not a valid phone number.";
			break;
			
		case "Date_Greater_Than":
			return "The start date must be before the end date.";
			break;
			
		case "Enter_A_Date":
			return "Please enter a date.";
			break;
			
		case "Enter_A_Value":
			return "The field is required.";
			break;
			
		case "Field_Required":
			return "The field is required.";
			break;
			
		case "Time_Greater_Than":
			return "The start time must be before the end time.";
			break;

		case "trailingbackslashreq":
			return "The field requires a trailing backslash.";
			break;

		case "trailingbackslashorfrontslashreq":
			return "The field requires a trailing backslash or frontslash.";
			break;

		case "trailingbackslashnotreq":
			return "The field does not require a trailing backslash.";
			break;
			
		case "trailingfrontslashreq":
			return "The field requires a trailing frontslash.";
			break;
		
		case "trailingfrontslashnotreq":
			return "The field does not require a trailing frontslash.";
			break;
			
		case "httprequired":
			return "The field must start with http://";
			break;
		
		case "httpnotrequired":
			return "The field must not begin with http://.";
			break;

		case "leadingfrontslashreq":
			return "The field requires a leading frontslash.";
			break;
		
		case "leadingfrontslashnotreq":
			return "The field does not require a leading frontslash.";
			break;			
		
		case "Missing_Offline_URL":
			return "Their are no chat agents available at this time. Please try again later.";
			break;
	}
}