Hi,
if you want to add more block email addresses then in this par of code
var badwords = /\b(eric.jones.z.mail@gmail.com)\b/ig;
add like this:
var badwords = /\b(eric.jones.z.mail@gmail.com|othermail|otheremail
Instead otheremail add email adress.
It should be like this:
function ff_EMail_validation(element, message)
{
var badwords = /\b(eric.jones.z.mail@gmail.com|othermail|otheremail)\b/ig;
if (badwords.test(element.value)) {
if (message=='') message = element.name+" contains a spam word.\n";
ff_validationFocus(element.name);
return message;
} // if
return '';
} // ff_EMail_validation
if you want you can send me all emails which you want to block, and I can add them into code.
regards,
Mirko