function getWord(word) {
	if (word == 'FormValidateCurrentPWD') return 'You must enter your current password.';
	if (word == 'FormValidateNewPWD') return 'You must enter your new password.';
	if (word == 'FormValidateVerifyNewPWD') return 'You must verify your new password.';
	if (word == 'FormValidatePWDsNoMatch') return 'Your passwords do not match.';
	if (word == 'EmailAddressNotFound') return 'Email address not found.';
	if (word == 'FoundAccountWithEmailAddress') return 'Success!  We found an account using this email address.';
	if (word == 'EmailAddressInvalid') return 'This email address is invalid.';
	if (word == 'PhoneNumberInvalid') return 'This phone number is invalid.';
	if (word == 'DateInvalid') return 'This date is invalid. Please use the format MM/DD/YYYY.';
	if (word == 'DateTimeInvalid') return 'This date or time is invalid. Please use the format MM/DD/YYYY HH:MM AM.';
	if (word == 'NumberInvalid') return "This isn't a number.";
	if (word == 'InfoRequired') return 'This information is required.';
}