	function show_img(file_name)
	{
		xmlHttp=GetXmlHttpObject()
		if (xmlHttp==null)
		  {
		  alert ("Your browser does not support AJAX!");
		  return;
		  }
		var url="wwwroot/site/modules/gallery/show_img.php?img="+file_name;

		xmlHttp.onreadystatechange=ReturnAction;
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null);
	}

	function ReturnAction() 
	{ 
		if (xmlHttp.readyState==4)
		{ 
		document.getElementById("show_img").innerHTML=xmlHttp.responseText;
		}
	}

	function show_img_admin(file_name)
	{
		xmlHttp=GetXmlHttpObject()
		if (xmlHttp==null)
		  {
		  alert ("Your browser does not support AJAX!");
		  return;
		  }
		var url="show_img_admin.php?img="+file_name;

		xmlHttp.onreadystatechange=ReturnAction2;
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null);
	}

	function ReturnAction2() 
	{ 
		if (xmlHttp.readyState==4)
		{ 
		document.getElementById("show_img_admin").innerHTML=xmlHttp.responseText;
		}
	}