/*
Fonction EffacerText
On clique sur le champ le texte à l'intérieur s'efface
*/

function EffacerText()
{
	var champRecherche = document.getElementById("s");
	if (champRecherche.value == champRecherche.defaultValue)
	{
		champRecherche.value= '';
	}
}