function couleur(obj) {
     obj.style.backgroundColor = "#F6F6F6";
}


function valid_form_annonce()
{

var msg = "";


if (document.enr_donaoo.libelle.value.length == 0)
{
document.enr_donaoo.libelle.style.backgroundColor = "#DEEDC1";
msg += "- Veuillez de pr\351ciser un libell\351 pour votre annonce.\n";
/* CONVERSION EN OCTAL DES CARACTERES ACCENTUES. TABLE DE CONVERSION A L'ADRESSE SUIVANTE : http://www.pjb.com.au/comp/diacritics.html */

}


if (document.enr_donaoo.rubric.value.length == 0)
{
document.enr_donaoo.rubric.style.backgroundColor = "#DEEDC1";
msg += "- Veuillez de pr\351ciser une cat\351gorie.\n";
}


if (document.enr_donaoo.etat_prod.value.length == 0)
{
document.enr_donaoo.etat_prod.style.backgroundColor = "#DEEDC1";
msg += "- Veuillez indiquer un \351tat.\n";
}

if (document.enr_donaoo.ville.value.length == 0)
{
document.enr_donaoo.ville.style.backgroundColor = "#DEEDC1";
msg += "- Veuillez indiquer une ville.\n";
}

if (document.enr_donaoo.livraison.value.length == 0)
{
document.enr_donaoo.livraison.style.backgroundColor = "#DEEDC1";
msg += "- Veuillez indiquer un type de livraison.\n";
}

if (document.enr_donaoo.detail.value.length == 0)
{
document.enr_donaoo.detail.style.backgroundColor = "#DEEDC1";
msg += "- Veuillez donner une description.\n";
}

if (document.enr_donaoo.id_mail.value != "")	{
		indexAroba = document.enr_donaoo.id_mail.value.indexOf('@');
		indexPoint = document.enr_donaoo.id_mail.value.indexOf('.');
		if ((indexAroba < 0) || (indexPoint < 0))		{
		document.enr_donaoo.id_mail.style.backgroundColor = "#DEEDC1";
			msg += "- Le mail est incorrect.\n";
		}
	}
	else	{
		document.enr_donaoo.id_mail.style.backgroundColor = "#DEEDC1";
		msg += "- Veuillez saisir votre mail.\n";
}

if (document.enr_donaoo.phone_02.value.length == 0)
{
document.enr_donaoo.phone_02.style.backgroundColor = "#DEEDC1";
msg += "- Veuillez indiquer votre t\351l\351phone.\n";
}

if (document.enr_donaoo.valid_cga.checked == false)
{
document.enr_donaoo.valid_cga.style.backgroundColor = "#DEEDC1";
msg += "- Vous devez accepter les conditions g\351n\351rales d'utilisation.\n";
}

if (msg == "") 
		{
			return(true);
		}
	else	
		{
			msg += "Merci.\n";
			alert(msg);
			return(false);
		}		
}
