//nous appliquons simplement une couleur d'arrière plan aux objets traités,
function couleur(obj) {
if(obj.value == "")
obj.style.cssText='border:1px solid #F6A906; background:#fbe1a9;'; 
if(obj.value != "")
obj.style.backgroundColor = "#e6ebc8";
}
function check() {
var msg = "";
//Vérification du mail s'il n'est pas vide on vérifie le . et @
if (document.Form_informations.DI_email.value != "")
{
indexAroba = document.Form_informations.DI_email.value.indexOf('@');
indexPoint = document.Form_informations.DI_email.value.indexOf('.');
if ((indexAroba < 0) || (indexPoint < 0))
{
document.Form_informations.DI_email.style.cssText='border:1px solid #F6A906; background:#fbe1a9;'; 
msg += "L'adresse email est incorrecte\n";
}
}
else
{
document.Form_informations.DI_email.style.cssText='border:1px solid #F6A906; background:#fbe1a9;'; 
msg += "Veuillez saisir votre mail.\n";
}
if (document.Form_informations.DI_nom.value == "")
{
msg += "Veuillez saisir votre nom\n";
document.Form_informations.DI_nom.style.cssText='border:1px solid #F6A906; background:#fbe1a9;'; 
}

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