function check(){
	
	var my = document.getElementById('formContact');
	var ok = true;
	if (document.getElementById('Nom').value == '') {
		alert('Le champ Nom est obligatoire');
		document.getElementById('Nom').focus();
		ok = false;		
	}
	else if (document.getElementById('Prenom').value == '') {
		alert('Le champ Prenom est obligatoire');
		document.getElementById('Prenom').focus();
		ok = false;		
	}
	else if (document.getElementById('Adresse_postale').value == '') {
		alert('Le champ Adresse postale est obligatoire');
		document.getElementById('Adresse_postale').focus();
		ok = false;		
	}
	else if (document.getElementById('Code_postal').value == '') {
		alert('Le champ Code postal est obligatoire');
		document.getElementById('Code_postal').focus();
		ok = false;		
	}
	else if (document.getElementById('Ville').value == '') {
		alert('Le champ Ville est obligatoire');
		document.getElementById('Ville').focus();
		ok = false;		
	}
	else if (document.getElementById('Pays').selectedIndex == 0) {
		alert('Le champ Pays est obligatoire');
		document.getElementById('Pays').focus();
		ok = false;		
	}
	else if (document.getElementById('Adresse_email').value == '') {
		alert('Le champ Adresse e-mail postale est obligatoire');
		document.getElementById('Adresse_email').focus();
		ok = false;		
	}	
	else if (document.getElementById('Telephone').value == '') {
		alert('Le champ Telephone est obligatoire');
		document.getElementById('Telephone').focus();
		ok = false;		
	}
	else if (document.getElementById('Message').value == '') {
		alert('Le champ Message est obligatoire');
		document.getElementById('Message').focus();
		ok = false;		
	}	
	if (ok) my.submit();
}