/*****************************************************************************/
/* Document JavaScript de Annonce fr - L'Abc...daire des annonces */
/* Auteur : ACR Référencement */
/* Site : http://www.sondage-clicparticulier.com */
/* Copyright 2009 - Reproduction interdite même partielle des fichiers */
/*****************************************************************************/
function changeBackgroundColor(elemnt)
	{
		if (elemnt) {elemnt.style.backgroundColor = "#9c9c9c";}
		return;
	}
function v_contact()
 	{
		if(document.contact.nom.value == "") {
		alert("Veuillez entrer votre nom");
		changeBackgroundColor(document.contact.nom);
		document.contact.nom.focus();
		return false;
		}
		else
		if(document.contact.prenom.value == "") {
		alert("Veuillez entrer votre prénom");
		changeBackgroundColor(document.contact.prenom);
		document.contact.prenom.focus();
		return false;
		}
		else
		if(document.contact.email.value == "") {
		alert("Veuillez entrer votre adresse électronique");
		changeBackgroundColor(document.contact.email);
		document.contact.email.focus();
		return false;
		}
		else
		if(document.contact.email.value.search(/^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,3}|[0-9]{1,3})(\]?)$/) == -1) {
		alert("Ce n'est pas une adresse électronique valide !");
		changeBackgroundColor(document.contact.email);
		document.contact.email.focus();
		return false;
		}
		if(document.contact.remarque.value == "") {
		alert("Veuillez entrer le texte de votre demande");
		changeBackgroundColor(document.contact.remarque);
		document.contact.remarque.focus();
		return false;
		}
		else
		return true;
	}