/* */
function VerifArc()
{
if (document.FormArchive.search.value=="")
{
alert("Le champ est vide !");
document.FormArchive.search.focus();
}
else if (document.FormArchive.search.value=="Tapez un mot")
{
alert("La recherche est invalide !");
document.FormArchive.search.focus();
}
else
{
document.FormArchive.method = "post";
document.FormArchive.action = "index.php?page=archives";
document.FormArchive.submit();
}
}

