function verifNews(obj){
	myAlert.temp=5;
	testMail = verifMail('contact_news','email_inscrits');
	if(obj.email_inscrits.value==""){
		obj.email_inscrits.focus();
		messageAlert('<br /><br />You have to enter a mail !',"email_inscrits");
		return false;
	}
	if(testMail == false){
		obj.email_inscrits.focus();
		messageAlert('<br /><br />You mail is not valid !',"email_inscrits");
		return false;
	}
	if(obj.verif_news.value==""){
		obj.verif_news.focus();
		messageAlert('<br /><br />You have to seize the word of check',"verif_news");
		return false;
	}
	return true;
}
