﻿function checkDuplicate(_category, displayItem, postItem) {
    var objItem = $.json.encode(postItem);
    $.post("http://localhost:17410/Best.TRM.Web.WebSite/webservices/CheckDuplicateItem.ashx?CheckCategory=" + _category, { item: objItem },
                        function(data, textStatus) {
                            if (textStatus == "success") {
                                if (data.FLAG == 1) {
                                    $("#" + displayItem).text(data.MESSAGE);
                                }
                                else {
                                    $("#" + displayItem).text(data.MESSAGE);
                                }
                            }
                        }, "json");
}