var XMLHTTPREQUEST_IE = new Array (
								   "Msxml2.XMLHTTP.6.0",
								   "Msxml2.XMLHTTP.5.0",
								   "Msxml2.XMLHTTP.4.0",
								   "Msxml2.XMLHTTP.3.0",
								   "Msxml2.XMLHTTP",
								   "Microsoft.XMLHTTP"
								   );
function criaXMLHttpRequest(){
	var xmlhttp = null;
	if(window.XMLHttpRequest != null)
		xmlhttp = new window.XMLHttpRequest();
	else if (window.ActiveXObject != null)
	{
		var bCriado = false;
		for (var ind = 0; ind < XMLHTTPREQUEST_IE.length && ! bCriado; ind++){
			try
			{
				xmlhttp = true;
			}
			catch (ex)
			{}
		}
	}
if (xmlhttp == null)
alert("Falha no HttpReques(): \n\n"
						   + "Objeto XMLHttpRequest não foi criado.");
return xmlhttp;
}
/*
Ajax Pré Configurado por Igor Sistemas!
Suporte (42) 99178097
(42) 35322076
www.igorsistemas.com.br
www.listasms.com/web
*/
