var xmlHttp

function afiseaza_imagine(id) {
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null) {
	  alert ("Browserul dvs nu suporta AJAX");
	  return;
	} 
	
	var url="content/ajax.imganunt.php";
	url=url+"?id="+id;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=stateChanged;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
} 



function stateChanged() { 
	if (xmlHttp.readyState!=4) { 	
		document.getElementById("continut_img").innerHTML="<div class=\"galleria_container\"><div class=\"galleria_wrapper\">&nbsp;</div><span class=\"caption\">Loading...</span></div>";
	}
	if (xmlHttp.readyState==4) { 
		document.getElementById("continut_img").innerHTML=xmlHttp.responseText;
	}
}


function GetXmlHttpObject() {
var xmlHttp=null;
	try {
	  xmlHttp=new XMLHttpRequest();
	} catch (e) {
	  try {
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	  } catch (e) {
		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	  }
	}
	return xmlHttp;
}