google.load("jquery", "1.3.1");
var xmlhttp_live;


function showResult(str1)
{
if (str1.length==0)
  {
  //$('#livesearch').fadeOut();
  document.getElementById("livesearch").innerHTML='';
  document.getElementById("livesearch").style.border="0px";
  return;
  }
xmlhttp_live=GetXmlHttpObject()
if (xmlhttp_live==null)
  {
  alert ("Your browser does not support XML HTTP Request");
  return;
  }
var url="http://www.cicciozilla.net/ville/live/livesearch.php";
url=url+"?q="+str1;
url=url+"&sid="+Math.random();
xmlhttp_live.onreadystatechange=stateChanged;
xmlhttp_live.open("GET",url,true);
xmlhttp_live.send(null);
}

function stateChanged()
{
if (xmlhttp_live.readyState==4)
  {
  document.getElementById("livesearch").innerHTML=xmlhttp_live.responseText;
  }
}

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;
}
