var xmlHttp2;

function showholyplace(str)
{ 
xmlHttp2=GetXmlHttpObject()
if (xmlHttp2==null)
{
alert ("Browser does not support HTTP Request")
return
} 
var url="getholyplace.php"
url=url+"?holy_id="+str
//alert(url);
//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")
{ 
//alert(document.getElementById("txtholy").innerHTML);
document.getElementById("txtholy").innerHTML=xmlHttp2.responseText 
} 
} 