function recherche_blur(o)
{
	if (o.value == "Rechercher")
	{
		o.style.color="#a0a0a0";
	}
}

function recherche_focus(o)
{
	if (o.value == "Rechercher")
	{
		o.style.color="#000000";
		o.value = "";
	}

}
