var xmlHttp

function showCustomer(str,numres)
{ 
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
  {
 
  return;
  } 
var url="video11.asp?";
url=url+"c="+str;
url=url+"&numres="+numres;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}

function stateChanged() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("txtHint").innerHTML=xmlHttp.responseText;
}
else {
          document.getElementById("txtHint").innerHTML = '<img src="http://www.4321.co.il/property/ajax2.gif"><br><font color="yellow" size=-2>loading cities</font>';
        }


}

function GetXmlHttpObject()
{
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;
}