function Ajax(){
	var ajax;
	try{
		ajax = new XMLHttpRequest(); // Apple Safari 1.2+ , Mozilla 0.7.3+- , Opera Browser 7.60 P1+ (opera aceita só get, não suporta o método setRequestHeader())
	}catch(e){
		try{
			ajax = new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer 5-
		}catch(e){
			try{
				ajax = new ActiveXObject("Microsoft.XMLHTTP"); // Internet Explorer 6+
			}catch(e){
				ajax = false;
			}
		}
	}
	return ajax;
};
