function controle() {

var RdCkOk = "true";
  var RdMess = "";
  var CbMess = "";
  var CbCkOk = false;
var zob = "";
if (document.mail.nom.value=="") 
	{
	zob += "- Nom\n";
	}

if (document.mail.prenom.value=="") 
	{
	zob += "- Prénom\n";
	}
if (document.mail.adresse.value=="") 
	{
	zob += "- Adresse\n";
	}
if (document.mail.cp.value=="") 
	{
	zob += "- Code postal\n";
	}
if (document.mail.ville.value=="") 
	{
	zob += "- Ville\n";
	}
if (document.mail.pays.value=="") 
	{
	zob += "- Pays\n";
	}

if (zob=="") 
	{
	return true;
	}


alert("Vous n'avez pas remplis les champs suivants\n\n"+zob);
return false; 
}