var e = document.getElementById('form_finder_id');
e.form.onsubmit = function () {
	passed_validation = EkControlFmValidate(this);
	if (passed_validation && this.contact_by_telephone.checked && this.Telephone_Number.value.length < 10) {
		alert('Since you checked to contact you by telephone, please enter your full phone number including area code.');
		passed_validation = false;
	}
	return passed_validation;
	
}