function VerificationEmail(elm)
{
    if (elm.indexOf("@") != "-1" &&
        elm.indexOf(".") != "-1" &&
        elm != "")
        return true;

    return false;
}

function verifForm(valider) {
    var courriel = document.forms["formNewsLetter"].elements["mail"];
    var MesErr =  "";

    if (!VerificationEmail(courriel.value)) {
        MesErr += "Le courriel saisi est incorrect \nThe email address you entered is invalid \nDie e-mail Adresse ist nicht korrekt";
    //courriel.focus();
    }


    if (MesErr != "") {
        alert(MesErr);
        return false;
    } else {
        return true;
    }
}
