/*  Verify Email Script: This script and many more are available free online at The JavaScript Source!! http://javascript.internet.com  */

<!-- Begin

function checkTwoEmail(form) {
var Email = form.Email.value;
var email2 = form.email2.value;

if (Email != email2) {
alert ("\nYou did not enter the same email address twice. Please re-enter your email address.")
form.email2.focus();
return false;
}
else return true;
}

// End -->
