function ObjetoAjax(){
	var req;

	try{
		req = new XMLHttpRequest();
	}catch(e){
		try{
			req = new ActiveXObject("Msxml2.XMLHTTP");
		}catch(e2){
			try{
				req= new ActiveXObject("Microsoft.XMLHTTP");
			}catch(e3){
				alert("Esser browser não tem recursos para rodar AJAX!");
				req = null;
			}
		}
	}
	return req;
}
