function iniciaAjax(){
	var ajax;
	if(window.XMLHttpRequest){ //Firefox, Safari, ...
		ajax = new XMLHttpRequest();
	}else if (window.ActiveXObject){ //IE
		ajax = new ActiveXObject("Msxml2.XMLHTTP");
		if(!ajax){
			ajax = new ActiveXObject("Microsoft.XMLHTTP");
		}
	}else{
		alert("Seu navegador não possui suporte para esta aplicação");
	}
	return ajax;
}
