function check()
{

	if(document.getElementById('nom').value.length < 2)
	{
		alert('Tous les Champs sont obligatoires ! \n Tu as oublié de remplir le champ "Nom".');
		return false;
	}
	if(document.getElementById('nom').value.length > 70)
	{	
		alert('Nom trop long ! \n Champ limité à 70 caractères.');
		return false;
	}
	if(document.getElementById('email').value.length < 2)
	{
		alert('Tous les Champs sont obligatoires ! \n Tu as oublié de remplir le champ "Email".');
		return false;
	}
	if(document.getElementById('email').value.length > 250)
	{	
		alert('Email trop long ! \n Champ limité à 250 caractères.');
		return false;
	}
	var reg= /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,})+$/;
	var ch1= document.getElementById('email').value;
  	if(reg.exec(ch1)==null) 
  	{
  		alert('Email Invalide !');
  		return false;
  	}
  	if(document.getElementById('message').value.length < 2)
	{
		alert('Tous les Champs sont obligatoires ! \n Tu as oublié de remplir le champ "Email".');
		return false;
	}
	
	return true;

}