function getContent(url,containerID)
{
	var http = init();
	http.onreadystatechange = processRequest;

	function init()
	{
		var xmlHttp=null;
		try
		{
			xmlHttp=new XMLHttpRequest();
		}
		catch (e)
		{
			try
			{
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch (e)
			{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
		}
		return xmlHttp;
	}

	function processRequest()
	{
		if (http.readyState == 4)
		{
			if (http.status == 200)
			{
				document.getElementById(containerID).innerHTML = http.responseText;
			}
		}
	}
	http.open('GET', url+'?'+Math.random(), true);
	http.send(null);
}

function getContentazr()
{
	getContent('http://enews.ge/wp-content/themes/betav2/code/azrebi.php', 'getContentazr');
}
function getContenticituara()
{
	getContent('http://enews.ge/wp-content/themes/betav2/code/icituara.php', 'getContenticituara');
}