function ReadCount() {
    if (document.getElementById("UdowsReadCount")) {
        var type = document.getElementById("UdowsReadCount").getAttribute("data-type");
        var id = document.getElementById("UdowsReadCount").getAttribute("data-id");
        UdowsAjax({
            url: "/Udows/Api/PostReadCount.aspx",
            data: "type=" + type + "&id=" + id,
            type: "post",
            dataType: "text",
            success: function (result) {

            }
        });
    }
}