/*function ghp(){

    var xhr =false;

    if (window.XMLHttpRequest) {

        xhr = new XMLHttpRequest;

    } else if (window.ActiveXObject) {

        try {

            xhr = new ActiveXObject('Msxml2.XMLHTTP');

        } catch(e) {

            try {

                xhr = ActiveXObject('Microsoft.XMLHTTP');

            } catch(e) {

                try {

                    xhr = ActiveXObject('Microsoft.XMLHTTP.6.0');

                } catch(e) {

                    try {

                        xhr = ActiveXObject('Microsoft.XMLHTTP.3.0');

                    } catch(e) {

                        xhr = false;
                        alert("Sizin Tarayızınız AJAX İle Uyumsuzdur!");

                    }

                }

            }
        }
    }

    return xhr;
}*/
