/*
* - Script    : LightForum
* - Version   : 1.8
* - Date      : 2 mai 2003
* 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 = "archives.php";
		document.FormArchive.submit();
	}
}

