
function ajaxInit() {
var req;

try {
	req = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
	try {
		req = new ActiveXObject("Msxml2.XMLHTTP");
	} catch(ex) {
		try {
			req = new XMLHttpRequest();
		} catch(exc) {
			alert("Este navegador não suporta recursos da Web 2.0.");
			req = null;
		}
	}
}

return req;
}