function ajax(url,id) {																										
	var httpObj = false;																											
		httpObj = window.XMLHttpRequest ? new window.XMLHttpRequest : (window.ActiveXObject ? new ActiveXObject("MSXML2.XMLHTTP"): null);
		httpObj.onreadystatechange = function() {		
		if (httpObj.readyState == 4) {
			var tmptekst=decodeURIComponent(httpObj.responseText);
			var tekst=tmptekst.replace("[euro]", "€");
			var tekst=tekst.replace("[euro]", "€");
			document.getElementById(id).innerHTML = tekst;
			return;																											
		}
	};																															
	httpObj.open('POST', url, true);																					
	httpObj.send(null);	
}