var xmlHttp = FactoryXMLHttpRequest();
	
	function getData(imeFilea) {
		xmlHttp.open('get', 'data.php?id=' + imeFilea);
		xmlHttp.onreadystatechange = handleInfo;
		xmlHttp.send(null);
	}
	
	function handleInfo() {
		if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
			var response = xmlHttp.responseText;
			document.getElementById('content').innerHTML = response;
		}
		else {
			document.getElementById('content').innerHTML = "Loading ... ";
		}
	}
