// JavaScript Document
function IniciaAjax() {
	var ajax;
	if(window.XMLHttpRequest){
		ajax = new XMLHttpRequest();
	}  else {
		if (window.ActiveXObject) {
			ajax = new ActiveXObject("Msxml2.XMLHTTP");
			if (!ajax) {
				ajax = new ActiveXObject("Microsoft.XMLHTTP");
			} 
		} else	{
			alert("Meu navegador Nao tem este Recurso");
		}
	}
	return ajax;
}

