
function VerifArc() {
 	if (document.FormArchive.search.value=="") { 
	alert("Ooooooo!!"); 
	document.FormArchive.search.focus(); 
	} 
	else if (document.FormArchive.search.value=="tapez un mot") { 
	alert("La recherche est invalide !"); document.FormArchive.search.focus(); 
	} 
	else if (document.FormArchive.search.value=="Enter a word") { 
	alert("Search is invalid !"); 
	document.FormArchive.search.focus(); 
	} 
	else { 
	document.FormArchive.method = "post"; 
	document.FormArchive.action = "archives.php3"; 
	document.FormArchive.submit(); 
	} 
} 