﻿function EncryptPassword() {
    $("#" + PasswordTextBoxId).val(hexEncode(rc4Encrypt(hashCode, $("#" + PasswordTextBoxId).val())));
    //alert(hashCode);
}

