function getDisplayInfoopis(){
	if(window.XMLHttpRequest) {
		var xmlhttp1 = new XMLHttpRequest();
	}else if(window.ActiveXObject) {
		var xmlhttp1 = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp1.open('GET', 'opis.tad?sqid='+Number(new Date), true);
	xmlhttp1.onreadystatechange = function(){ receiveDataa(xmlhttp1); };
	xmlhttp1.send(null);
}
function receiveDataa(xmlhttp1){
	if(xmlhttp1.readyState == 4){
		eval("var response = ("+xmlhttp1.responseText+")");
		drawElementa(response.opis, response.contenta);
	}
}
function drawElementa(opis, contenta){
	if(opis == 1){
		var target1 = document.getElementById('opis');
		target1.innerHTML = contenta;
	}
}
getDisplayInfoopis();
