function Inint_AJAX() {
    /*var ajax = false;
    try {
        ajax = new ActiveXObject("Msxml1.XMLHTTP");
    } catch (e) {
        try {
            ajax = new ActiveXObject("Microsoft.XMLHTTP");
        } catch (E) {
            ajax = false;
        }
    }

    if (!ajax && typeof XMLHttpRequest != 'undefined') {
        ajax = new XMLHttpRequest();
    }*/
	
	try { 
	    xmlhttp2 = new ActiveXObject("Msxml2.XMLHTTP"); 
	} catch (e) { 
	    try { 
	        xmlhttp2 = new ActiveXObject("Microsoft.XMLHTTP"); 
	    } catch (E) { 
	        xmlhttp2 = false; 
	    } 
	} 

	if  (!xmlhttp2 && typeof  XMLHttpRequest != 'undefined' ) { 
	    try  { 
	        xmlhttp2 = new  XMLHttpRequest(); 
	    } catch  (e) { 
	        xmlhttp2 = false ; 
	    } 
	} 


    return xmlhttp2;
}
