var xmlHttp2;

function showImage(id)
{
	if (id.length==0)
	{ 
	  return;
	}
	xmlHttp2=GetXmlHttpObject();

	if (xmlHttp2==null)
	{
	  alert ("Browser does not support HTTP Request");
	  return;
	} 

	var url="/php/editx/4images_ajax.php";
	url=url+"?id="+id;
	url=url+"&sid="+Math.random();
	xmlHttp2.onreadystatechange=stateChanged2 ;
	xmlHttp2.open("GET",url,true);
	xmlHttp2.send(null);

} 

function stateChanged2() 
{ 
  if (xmlHttp2.readyState==4 || xmlHttp2.readyState=="complete")
  { 
    document.getElementById("4images_ajax") . innerHTML=xmlHttp2.responseText;
    document.getElementById("4images_ajax") . style.border="0px";
  } 
}

