function AJAX() {
var ajax = false;

// Internet Explorer (5.0+)
try {
ajax = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {

try {
ajax = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {
ajax = false;
}

}

// Mozilla veya Safari
if ( !ajax && typeof XMLHttpRequest != 'undefined' ) {

try{
ajax = new XMLHttpRequest();
}catch(e) {
ajax = false;
}

}

// Diger (IceBrowser)
if ( !ajax && window.createRequest ) {

try{
ajax = window.createRequest();
}catch(e) {
ajax = false;
}

}

return ajax;
}

Bu işini görecektir. Kolay gelsin