//inicia ajax
function inicia_ajax() {
	ajax = null;
	if(window.XMLHttpRequest) { // Mozilla, Safari,...
		ajax = new XMLHttpRequest();
	}
	else if (window.ActiveXObject) { // IE
		try {
			ajax = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch(e) {
			try {
				ajax = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch(e) {
				ajax = null;
				//retorno_abre('formulario','Não foi possível carregar o AJAX!');
				alert('Não foi possível carregar o AJAX');
			}
		}
	}
}
