function valid() 
{
	if (document.contact.qualite.selectedIndex == 0)
	{
		alert("Indiquez votre civilité");
		document.contact.qualite.focus();
		return(false);
	} 
	if (document.contact.nom.value == "")
	{
		alert("Indiquez votre nom");
		document.contact.nom.focus();
		return(false);
	} 
	if (document.contact.prenom.value == "")
	{
		alert("Indiquez votre prénom");
		document.contact.prenom.focus();
		return(false);
	}                         
	if (document.contact.adresse.value == "")
	{
		alert("Indiquez votre adresse");
		document.contact.adresse.focus();
		return(false);
	} 
	if (document.contact.code_postal.value == "")
	{
		alert("Indiquez votre code postal");
		document.contact.code_postal.focus();
		return(false);
	} 
	if (document.contact.ville.value == "")
	{
		alert("Indiquez votre ville");
		document.contact.ville.focus();
		return(false);
	} 
	if (document.contact.tel.value == "")
	{
		alert("Indiquez votre numéro de téléphone");
		document.contact.tel.focus();
		return(false);
	}

	if (document.contact.email.value == "")
	{
		alert("Veuillez indiquer votre email.");
		document.contact.email.focus();
		return(false);
	} 
	var radioSelected = false;
	for (i = 0;  i < document.contact.cnil.length;  i++)
	{
    	if (document.contact.cnil[i].checked)
        	radioSelected = true;
	}
	if (!radioSelected)
	{
		alert("Veuillez indiquer si vous souhaitez profiter des offres promotionnelles.");
		document.contact.cnil[0].focus();
	    return (false);
	}
}
