window.onload = function()
{	
	document.getElementById('searchtext').onclick = function()
	{
		if (this.value == "Rechercher")
		{
			this.value = "";
		}
	}
	document.getElementById('searchtext').onblur = function()
	{
		if (this.value == "")
		{
			this.value = "Rechercher";
		}
	}
}
