// Begin FieldSettings Listings for various stationary items.
// ---------------------------------------------------------------------------
// Note: All FieldSettings are plugged into the customerItemNumberSettings
//       bellow where they are matched up with their respective customerItemNumber
//       so that they may be found when a particular stationary item is 
//       called up.


// The default settings for a customItemNumberSetting
//

//
//	Each of the objects contained within these consist of the following 
//  simple object structure:
//
//  ValidationObject.prototype.validator;
//  ValidationObject.prototype.errorMsg;
//
//  Also see ValidationManager.js in its validateAllFields() method.
var validatorSettingsLogin = {
    
	"userid" : {"validator" : NOT_BLANK_VALIDATOR,
				"errorMsg" : "Please enter a valid username."},
											  
	"password" : {"validator" : NOT_BLANK_VALIDATOR,
			      "errorMsg" : "Please enter a password."}
};

var validatorSettingsPassword = {
	"email" : {"validator" : NOT_BLANK_EMAIL_VALIDATOR,
				"errorMsg" : "Please enter a valid <br/>email address for password retrieval."}
};

// Basically this is like a BeanFactory.
var customerItemNumberSettings = 
{
	"default" : {"fieldValidatorSettings" : validatorSettingsLogin},
	"passwordRet" : {"fieldValidatorSettings" : validatorSettingsPassword}
};

