var xmlHttp

function ShowAjax1(str)
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request")
return
} 
var url=str
idp=document.frmpost.province1.value
idq=document.frmsearch.requirement.value
//idpricefrom=document.frmsearch.pricefrom.value
//idpriceto=document.frmsearch.priceto.value
 url=url+"&id="+idp//+"&idq="+idq
xmlHttp.onreadystatechange=stateChanged1
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}
function stateChanged1() 
{ 
	document.getElementById("show1").innerHTML="<center><div class=content><img src='images/loading.gif'>Loading ...</div><center>";
   //
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
	{ 
	document.getElementById("show1").innerHTML=xmlHttp.responseText 
	//alert("DL"+xmlHttp.responseText )
	} 
} 
//show district 


function GetXmlHttpObject()
{ 
var objXMLHttp=null
if (window.XMLHttpRequest)
{
objXMLHttp=new XMLHttpRequest()
}
else if (window.ActiveXObject)
{
objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
}
return objXMLHttp
}