﻿var xmlhttp;
function showSS(str)
{
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  }
var url="/xaja/getSearchSuggestions.asp";
url=url+"?search="+str;
url=url+"&sid="+Math.random();
xmlhttp.onreadystatechange=SSstateChanged;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}

function SSstateChanged()
{
if (xmlhttp.readyState==4)
{
var sStyle = document.getElementById("suggestBox").style;
sStyle.display='block';
document.getElementById("suggestBox").innerHTML=xmlhttp.responseText;
}
}

function clearDiv()
{
if(!document.getElementById("suggestBox").focus())
    {
    document.getElementById("suggestBox").innerHTML='';
    var sStyle = document.getElementById("suggestBox").style;
    sStyle.display='none';
    }
}

function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  return new XMLHttpRequest();
  }
if (window.ActiveXObject)
  {
  // code for IE6, IE5
  return new ActiveXObject("Microsoft.XMLHTTP");
  }
return null;
}
