// define the namespace if necessary
if ( IDF == undefined )
	var IDF = { };
	
if ( IDF.NewsletterSignup == undefined )
	IDF.NewsletterSignup = { };
	
	
IDF.NewsletterSignup.ValidationParameters = { 
	FormId     : "frmNewsletterSignup",
	Validators : [
		{ 	Type               : Lutz.Validation.ValidatorType.Required,  
			Key                : "EmailRequired",
			ControlToValidate  : "txtEmail",
			ErrorMessage       : "You must enter your Email Address."
		} 
	],
	Visualizers : [
		{
			Type          : Lutz.Validation.VisualizerType.Summary,
			Control       : "ctlValidationSummary"
		}
	]
}
