function BothFieldsIdenticalCaseSensitive() {
var one = document.mailinglist.email.value;
var another = document.mailinglist.email2.value;
if(one == another) { return true; }
alert("Oops, both EMAIL fields must be identical.");
return false;
}

