/*
* - Script    : LightForum
* - Version   : 1.9a
* - Date      : 8 novembre 2005
* Merci de lire le fichier licence.txt / Please read the file licence.txt
*/
function VerifArc() {
	if (document.FormArchive.search.value=="") {
		alert("Ooops, 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 = "reunion_forum_archives.php";
		document.FormArchive.submit();
	}
}
