// requêtes en cours
var query = '' ;

function favoris()
{ // Accessible via navigator.appName
if (document.all) { // Microsoft Internet Explorer
	window.external.AddFavorite("http://www.ton-site-web.com","Ton-Site-Web.com");
} else if (window.sidebar) { // Netscape
	window.sidebar.addPanel("Ton-Site-Web.com","http://www.ton-site-web.com","");
} else {
	window.alert("Vous devrez mettre http://www.ton-site-web.com manuellement en favoris.");
}
}

// MOTEUR DE RECHERCHE ET FIREFOX
function ajout_moteur_toolbarre(src,tit,cat) {if ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function")) {window.sidebar.addSearchEngine("http://www.ton-site-web.com/tsw/home.src","http://www.ton-site-web.com/tsw/favicon.png",tit,cat);} else {alert("Ce moteur de recherche ne peut être installé que dans les navigateurs de la famille Mozilla.");}}

function ini(id)
{
			document.getElementById('theme').innerHTML = 'Du contenu pour ton site web';
			rf(id);
}

// REINITIALISER LA REQUETTE
function nouveau(id)
{
			document.getElementById(id).value = '';
			rf(id);
}

// DETECTION DE LA TOUCHE ENTREE
function entree(a,id,ok)
{
	 if (a==13)
  {
			document.getElementById(ok).click() ;
		}		
		 rf(id);
}

// NOUVELLE REQUETE
function rf(id)
{
			document.getElementById(id).focus();
}