// JavaScript Document
// desenvolvido por waio soluções em TI, base de pesquisa / google.com
// o uso do codigo é livre, somente não seja cara de pau e divulgue corretamente quem o fez ;P
// JavaScript Document
function ajaxInit() {
	var xmlhttp;
	
	try { 
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); 
	} catch (e) { 
		try { 
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); 
		} catch (E) { 
			xmlhttp = false; 
		} 
	} 
	
	if  (!xmlhttp && typeof  XMLHttpRequest != 'undefined' ) { 
		try  { 
			xmlhttp = new  XMLHttpRequest(); 
		} catch  (e) { 
			xmlhttp = false ; 
		} 
	}
	return xmlhttp;
}