function validateMailFr()
{

	var msg = "Afin de répondre à votre demande, nous aurions besoin des informations suivantes:\n";
	var a = 0;

	//validating the fields
	
	if(document.myForm.name.value == "")
	{
		msg = msg + "* Votre Nom.\n";
		a++;
	}

	if(document.myForm.e_mail.value == "")
	{
		msg = msg + "* Votre Adresse E-mail.\n";
		a++;
	}
	
	if(document.myForm.message.value == 0)
	{
		msg = msg + "* Votre message.\n";
		a++;
	}

	if(document.myForm.authed.value == "")
	{
		msg = msg + "* Votre code d’autorisation.\n";
		a++;
	}
	
	if(a == 0)
	{
		return true;
	}
	else
	{	
		alert(msg);
		return false;
	}
}
