/*
 *
 *	Fonctions javascript
 */
//	Vérification du formulaire
function verif(){
	var complet = false;

	if(document.contact.mail.value != ""){
		indexAroba = document.contact.mail.value.indexOf('@');
		indexPoint = document.contact.mail.value.indexOf('.');
		if ((indexAroba < 0) || (indexPoint < 0)){
			document.contact.mail.style.backgroundColor = "#e01f1f";
			alert('Le mail est incorrect');
			return false;
		}else{
			complet = true;
		}
	}else{
		document.contact.mail.style.backgroundColor = "#e01f1f";
		alert('Veuillez saisir votre adresse mail !');
		return false;
	}
	if(document.contact.nom.value != ""){
		complet = true;
	}else{
		document.contact.nom.style.backgroundColor = "#e01f1f";
		alert('Veuillez remplir le champ nom !');
		return false;
	}
	if(document.contact.prenom.value != ""){
		complet = true;
	}else{
		document.contact.nom.style.backgroundColor = "#e01f1f";
		alert('Veuillez remplir le champ prenom !');
		return false;
	}
	if(document.contact.captcha.value != ""){
		complet = true;
	}else{
		document.contact.captcha.style.backgroundColor = "#e01f1f";
		alert('Veuillez saisir le code de vérification !');
		return false;
	}
	return complet;
}

function supprimerContact(id){
	supp = confirm("Voulez-vous vraiment supprimer ce contact ?");
	if(supp == true){
		document.location.href = "supprimer.php?id="+id;
	}
}
