var Ajax = {

    _xhr: null,

    InitAjax: function () {

        if (window.XMLHttpRequest) {
            return _xhr = new XMLHttpRequest();
        }
        else if (window.ActiveXObject) {
            return _xhr = new ActiveXObject("Microsoft.XMLHTTP");
        }
        else {
            return false;
        }
    },

}


