function searchST()
{

if (document.getElementById('search').value=="SEARCH SALTTRIBE")
{
	document.getElementById("searchresults").style.display="none";
}
else if (document.getElementById('search').value=="")
{
	document.getElementById("searchresults").style.display="none";
}
else
{

var xmlHttp;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch (e)
      {
      alert("Your browser does not support AJAX!");
      return false;
      }
    }
  }
    xmlHttp.onreadystatechange=function()
    {

	if(xmlHttp.readyState==4)
      {

var sRes=xmlHttp.responseText;

if (sRes.length>0)
{
	document.getElementById("searchresults").innerHTML=sRes;
document.getElementById("searchresults").style.display="block";
}
else
{
document.getElementById("searchresults").style.display="none";
	
}
      }
    }
	
	var params = "s=" + escape(document.getElementById("search").value);
	
  xmlHttp.open("POST","ajax/searchit.php",true);
  //Send the proper header information along with the request
xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.setRequestHeader("Content-length", params.length);
xmlHttp.setRequestHeader("Connection", "close");

  xmlHttp.send(params);
  }
}