var xmlHttp

function ShowCall(str)
{ 
//alert(str);
var url="IsCallDB.asp?sid=" + Math.random() + "&q=" + str
xmlHttp=GetXmlHttpObject(stateChanged)
xmlHttp.open("GET", url , true)
xmlHttp.send(null)
} 

function cleanAMPjs(str)
{
	ret=str.replace(/&/, "AMPAMP");
	return ret
}

function stateChanged() 
{ 
var xx=1;
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
	{ 
	document.getElementById("txtHint").innerHTML=xmlHttp.responseText
		//alert(xmlHttp.responseText);
		//   to do - yes
		if (xmlHttp.responseText.indexOf("yes")>0){	
            //  Show none visible DIV :["tab"+SelId]  Tab1, Tab2 exc.
			//window.open("http://www.w3schools.com");
			//alert( document.getElementById("demodiv3").innerHTML );
			theLastNam=document.getElementById("theLastNam").value;
			theFirstNam=document.getElementById("theFirstNam").value;
			thePos=document.getElementById("thePos").value;
			theCom=document.getElementById("theCom").value;
			thePos=cleanAMPjs(thePos);
			theCom=cleanAMPjs(theCom);
			
			location.href ='http://www.anashim.biz/results2.asp?theLastNam='+theLastNam+'&theFirstNam='+theFirstNam+'&thePos='+thePos+'&theCom='+theCom 			
			
		} //if
	} //if
} // function

function GetXmlHttpObject(handler)
{ 
var objXmlHttp=null

if (navigator.userAgent.indexOf("Opera")>=0)
{
alert("This example doesn't work in Opera") 
return 
}
if (navigator.userAgent.indexOf("MSIE")>=0)
{ 
var strName="Msxml2.XMLHTTP"
if (navigator.appVersion.indexOf("MSIE 5.5")>=0)
{
strName="Microsoft.XMLHTTP"
} 
try
{ 
objXmlHttp=new ActiveXObject(strName)
objXmlHttp.onreadystatechange=handler 
return objXmlHttp
} 
catch(e)
{ 
alert("Error. Scripting for ActiveX might be disabled") 
return 
} 
} 
if (navigator.userAgent.indexOf("Mozilla")>=0)
{
objXmlHttp=new XMLHttpRequest()
objXmlHttp.onload=handler
objXmlHttp.onerror=handler 
return objXmlHttp
}
} 
