﻿function setComment(sid, cid, comment) {
    $.ajax({
        type: "POST",
        url: "http://localhost:5452/partner/ClaimsListHandler.asmx/SetComment",
        data: "{ ssid: '" + sid + "', scid: '" + cid + "', comment: '" + comment + "' }",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(response) {
            if (response == "1")
                return true;
            else return false;
        }
    });
}
