﻿function ServicePost(url, strparam) {
    $.ajax({
        type: "POST",
        url: url,
        data: "{" + strparam + "}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (msg) {
            return msg.d;
        },
        error: function (msg) {
        }
    });
}
