

<!--







function checkEmail() {

var one = document.getElementById("theForm").email.value.toLowerCase();

var another = document.getElementById("theForm").email_confirm.value.toLowerCase();

if(one == another) { return true; }

alert("Email address does not match-please try again.");

return false;

}


