var titul_galleries_xmlHttp;

function titul_galleries_pasirinkti(nuo)
{
	titul_galleries_xmlHttp=GetXmlHttpObject();
	if (titul_galleries_xmlHttp==null)
	{
		alert ("Your browser does not support AJAX! Please, update Your browser.");
		return;
	}
	
	var url=GLOBAL_HOME_DIR+"inc_ajax_titul_galleries.php";
	url=url+"?nuo="+nuo;
	url=url+"&randsid="+Math.random();
	titul_galleries_xmlHttp.onreadystatechange=function()
	{
		titul_galleries_stateChanged();
	}
	titul_galleries_xmlHttp.open("GET",url,true);
	titul_galleries_xmlHttp.send(null);
}

function titul_galleries_stateChanged()
{ 
	if (titul_galleries_xmlHttp.readyState==4)
	{
		var re = titul_galleries_xmlHttp.responseXML.documentElement;
		var re_busena = re.getElementsByTagName('busena')[0].firstChild.nodeValue;
		if (re_busena == '1')
		{
			document.getElementById("titul_galer_nuotr_container").innerHTML = GetXmlChildNodesText(re.getElementsByTagName('html_tekstas_nuotr')[0]);
			document.getElementById("titul_galer_pavad_container").innerHTML = GetXmlChildNodesText(re.getElementsByTagName('html_tekstas_pavad')[0]);
		}
	}
}