﻿/// <reference path="JQuery-1.2.3.js" />
/// <reference path="jquery-1.2.3-intellisense.js" />
/// <reference path="../General/general.js" />
function AjaxPost(aurl,asuccessFunc)
{
    $.ajax({
            type: "POST",
            url: aurl,
            data:"{}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success:  asuccessFunc
        });
}
function AjaxPost(aurl,adata,asuccessFunc)
{
    $.ajax({
        type: "POST",
        url: aurl,
        data: adata,
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: asuccessFunc,
        error: function(XMLHttpRequest, textStatus, errorThrown) {
            alert(errorThrown);
        }
    });
}