function Verif(){
	var frmfoorm = document.getElementById('frmForum');
	var titre = document.frmfoorm.titre.value;
	var texte = document.frmfoorm.texte.value;
	var msg='';

	if(titre.length < 3 || texte.length < 10)
	{
		if(titre.length < 3)
		{
			msg += "Attention ! votre titre doit contenir au moins trois caractères.\n";	
		}
		if(texte.length < 10)
		{
			msg += "Attention ! votre message doit contenir au moins dix caractères.\n";
		}
		alert(msg);
		return false;
	}
	return true;

}