﻿$(document).ready(function() {
    $("#ctl00_cphBody_txtConfirm").blur(function() {
            if ($("#ctl00_cphBody_txtConfirm").val() != $("#ctl00_cphBody_txtEmail").val())
                $("#password_warning").append("Email Address is not the same.");
            else $("#password_warning").empty(); 
      //  alert("test");
         



    });
});