// JavaScript Document

function formulaire_test()
{

if (document.inscription.Fsociete.value.length == 0)
{
alert("Champ société non complété, Merci");
return false;
}
if (document.inscription.Fnom.value.length == 0)
{
alert("Champ nom non complété, Merci");
return false;
}
if (document.inscription.Fadresse.value.length == 0)
{
alert("Champ adresse non complété, Merci");
return false;
}
if (document.inscription.Fcp.value.length == 0)
{
alert("Champ code postal non complété, Merci");
return false;
}
if (document.inscription.Fville.value.length == 0)
{
alert("Champ ville non complété, Merci");
return false;
}
if (document.inscription.Ftel.value.length == 0)
{
alert("Champ téléphone non complété, Merci");
return false;
}
if (document.inscription.Fmail.value.length == 0)
{
alert("Champ mail non complété, Merci");
return false;
}
if(document.inscription.Fmail.value.indexOf('@') == -1) {
alert("Veuillez vérifier le format de votre adresse e-mail.");
return false;
}
}


