function AbrirAjax() {
	var xmlhttp;
	try {
		//Para o Internet Explorer
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	catch(e) {
		try {
			//Para o Internet Explorer
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); 
		}
		catch(ex) {
			try {
				//Para todos os outros Browsers (FF, Opera e Etc)
				xmlhttp = new XMLHttpRequest();
			}
			catch(exc) {
				alert("Seu Navegador Não tem recursos para o uso de ajax");
				xmlhttp = null;
			}
		}
	}
	return xmlhttp;
}