// JavaScript Document



function Valider_FR(theForm) 
{
	
	
if (theForm.nom.value == "Votre nom *")
{
alert("Vous devez renseigner le champs suivant : \"Nom\".");
theForm.nom.focus();
return (false);
}

if (theForm.prenom.value == "Votre prenom *")
{
alert("Vous devez renseigner le champs suivant : \"Prenom\".");
theForm.prenom.focus();
return (false);
}


if (theForm.email.value == "Votre adresse email *")
{
alert("Vous devez renseigner le champs suivant : \"E-mail\".");
theForm.email.focus();
return (false);
}


if (theForm.message.value == "Introduisez votre message ici... *")
{
alert("Vous devez renseigner le champs suivant : \"Message\".");
theForm.message.focus();
return (false);
}


return (true);
}


function Valider_FR2(theForm) 
{
	
	
if (theForm.nom.value == "Votre nom *")
{
alert("Vous devez renseigner le champs suivant : \"Nom\".");
theForm.nom.focus();
return (false);
}

if (theForm.prenom.value == "Votre prenom *")
{
alert("Vous devez renseigner le champs suivant : \"Prenom\".");
theForm.prenom.focus();
return (false);
}


if (theForm.email.value == "Votre adresse email *")
{
alert("Vous devez renseigner le champs suivant : \"E-mail\".");
theForm.email.focus();
return (false);
}

if (theForm.tel.value == "Votre telephone *")
{
alert("Vous devez renseigner le champs suivant : \"Telephone\".");
theForm.tel.focus();
return (false);
}



if (theForm.message.value == "Introduisez vos dates ici *")
{
alert("Vous devez renseigner le champs suivant : \"Dates\".");
theForm.message.focus();
return (false);
}


return (true);
}







	
	
	
  
	
	


