
function MOt()
{

	if (document.moteurSH.key.value=="Recherche rapide")
	{
	alert("Recherche rapide ???");
	document.moteurSH.key.focus();
	}
	else if (document.moteurSH.key.value.length <3 )
	{
	alert("Plus de trois caractères SVP");
	document.moteurSH.key.focus();
	}
	else
	{
	document.moteurSH.submit();
	}
}