// JavaScript Document
function passwordMatch()
{
  var frm = document.forms["registrationForm"];
  if(frm.password.value != frm.passwordVerify.value)
  {
    alert('ERROR: The Password and verified password do not match!');
    return false;
  }
  else
  {
    return true;
  }
}
function emailMatch()
{
  var frm = document.forms["registrationForm"];
  if(frm.email.value != frm.emailVerify.value)
  {
    alert('ERROR: The emails do not match!');
    return false;
  }
  else
  {
    return true;
  }
}
