function writediv(texte)
{
document.getElementById('Recherchebox').innerHTML = texte;
}

function verifRecherche(Recherche)
{
if(Recherche != '')
{
if(Recherche.length<3000)
writediv('<span style="color:#cc0000"><b>Fonction recherche indisponible actuellement !!!</b></span>');
else if(texte = file('http://www.galoula.com/fr/Rech.php?rech='+escape(Recherche)))
                         {
          if(texte == 2)
               writediv('<span style="color:#cc0000"><b>'+Recherche+' :</b> Ne retourne aucun résultats.</span>');
          else
               writediv(texte);
                         }
               }

}

function file(fichier)
{
if(window.XMLHttpRequest) // FIREFOX
xhr_object = new XMLHttpRequest();
else if(window.ActiveXObject) // IE
xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
else
return(false);
xhr_object.open("GET", fichier, false);
xhr_object.send(null);
if(xhr_object.readyState == 4) return(xhr_object.responseText);
else return(false);
}
