var xmlhttp

function acrInfo(str)
{
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  }
//alert(str);
xmlhttp.onreadystatechange=acrstateChanged;
xmlhttp.open("GET",str,true);
xmlhttp.send(null);
}

function acrstateChanged()
{
if (xmlhttp.readyState==4)
  {
	//alert(xmlhttp.responseText);
	document.getElementById("acrType").innerHTML=xmlhttp.responseText;
  }
}
