var xmlHttp12

function preds3(name)
{ 
xmlHttp12=GetXmlHttpObject();
if (xmlHttp12==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url12="preds3.asp";
url12=url12+"?q="+name;
xmlHttp12.onreadystatechange=stateChanged12;
xmlHttp12.open("GET",url12,true);
xmlHttp12.send(null);


}

function stateChanged12() 
{ 
if (xmlHttp12.readyState==4)
{ 
document.getElementById("preds3").innerHTML=xmlHttp12.responseText;
}
}
