// JavaScript Document


 function delete_tags(imgname) {
xmlHttp=GetXmlHttpObject_ajax();
Path='galajax.php?imgname='+imgname; 

xmlHttp.open("GET",Path,true);
xmlHttp.onreadystatechange=function() {
if (xmlHttp.readyState==4) {
ResponseData=xmlHttp.responseText; 
alert(ResponseData)
document.getElementById('imagereplace').innerHTML = ResponseData; 
}
}
xmlHttp.send(null); 
}



 function GetXmlHttpObject_ajax()
{
var xmlHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
//Internet Explorer
try
  {
  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
  }
catch (e)
  {
  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
}
return xmlHttp;
}

