function verifyPassword()
{
  var frm = document.forms["newuserform"];
  if(frm.user_password.value != frm.user_password_verify.value)
  {
    alert('The Password and the Verify password fields do not match OR are not a minimum six characters!');
    return false;
  }
  else
  {
    return true;
  }
}