
theValidator.required("form_download_sample", "first_name", "Sorry, there's a little problem...a required field appears to be missing: Please enter your First Name","REGULAR");
theValidator.required("form_download_sample", "last_name", "Sorry, there's a little problem...a required field appears to be missing: Please enter your Last Name","REGULAR");
theValidator.required("form_download_sample", "company_name", "Sorry, there's a little problem...a required field appears to be missing: Please enter your Company Name","REGULAR");
theValidator.required("form_download_sample", "contact_email", "Sorry, there's a little problem...a required field appears to be missing: Please enter a valid Email Address","EMAIL");


function GetSample(theBtn )
{
	var theForm = theBtn.form;
	if ( theValidator.validate( theForm ) ) {
		theForm.submit();
	}
}
