window.onload = function () {

	document.getElementById("showingText").onclick = function () {
	
		this.style.display = "none";
		document.getElementById("hiddenPhone").style.display = "inline";
		
		var xhr = new XMLHttpRequest;
		xhr.open("GET", "http://agropiac.hu/functions/ads.php?id=" + this.getAttribute("class"), true);
		xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencode");
		xhr.setRequestHeader("Content-length", this.getAttribute("class").length);
		xhr.setRequestHeader("Connection", "close");
		
		xhr.send(this.getAttribute("class"));

	}

}
