	var http = false;
	try{
		http = new ActiveXObject("Msxml2.XMLHTTP");
		//alert('Você está usando Microsoft Internet Explorer.');
	}
	catch (e){
		try{
			http = new ActiveXObject("Microsoft.XMLHTTP");
			//alert('Você está utilizando o Internet Exlorer.');
		}
		catch (E){
			http = false;
		}
	}
	
	if(!http && typeof XMLHttpRequest != 'undefined'){
		http = new XMLHttpRequest();
		//alert('Você não está utiliando o Internet Eplorer.');
	}
