	function validateEmail( email_field, source_name, source_field ) {

		email_string = document.getElementById( email_field ).value;

		check_email = emailCheck( email_string, source_name );

		if( check_email == true ) {
			source_field.form.submit();
			return true;
		}
		else {
			//alert("The email address you have entered is not a valid email address.");
			return false;;
		}
	}
