function FValidateControl(control) {

	if (control.value == "")
	{
		alert(control.name + " : Ce champ est indispensable et doit être rempli pour que votre formulaire puisse nous être envoyé sur le Web.")

		control.focus()

		return false
	}
	return true
}

function FSubmitValidation(form)
{
	if (!FValidateControl(form.Societe))
		return false

	if (!FValidateControl(form.Adresse))
		return false

	if (!FValidateControl(form.Code_Postal))
		return false

	if (!FValidateControl(form.Ville))
		return false

	if (!FValidateControl(form.Email))
		return false

	return true
}