var xmlHttp11

function preds2(str)
{ 
xmlHttp11=GetXmlHttpObject();
if (xmlHttp11==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url11="preds2.asp";
url11=url11+"?q="+str;
xmlHttp11.onreadystatechange=stateChanged11;
xmlHttp11.open("GET",url11,true);
xmlHttp11.send(null);


}

function stateChanged11() 
{ 
if (xmlHttp11.readyState==4)
{ 
document.getElementById("preds2").innerHTML=xmlHttp11.responseText;
}
}

