function nuevoAjax(){
	
	var objetoAjax = false;
	
	//INSTANCIAMOS EL OBJETO XMLHttpRequest
    try {
        objetoAjax = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
        try {
        	objetoAjax = new ActiveXObject("Microsoft.XMLHTTP");
    	}
        catch (E) {
        	objetoAjax = false;
         }
	}

    if (!objetoAjax && typeof XMLHttpRequest!='undefined') {
    	objetoAjax = new XMLHttpRequest();
    }
    return objetoAjax;
}