function ajaxCall( url ) {
	// Cria objeto para Ajax
	try{
	    xmlhttp = new XMLHttpRequest();
	}catch(ee){
	    try{
	        xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	    }catch(e){
	        try{
	            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	        }catch(E){
	            xmlhttp = false;
	        }
	    }
	}

	xmlhttp.open("GET", url, true);

	xmlhttp.onreadystatechange = function() {
		if (xmlhttp.readyState == 1) {
			try{
				onAjaxProcessing();
			} catch(e){;}
			
		} else if (xmlhttp.readyState == 4) {
			try{
				onAjaxReady(xmlhttp);
			} catch(e){;}
		}
	}
	xmlhttp.send(null);
}
