function frontpage_form1_Validator(theform) 
{ 
if (theform.Nom.value == "") 
{ 
alert("Vous devez inscrire votre nom."); 
theform.Nom.focus(); 
return (false); 
} 
if (theform.Adresse.value == "") 
{ 
alert("Vous devez inscrire votre adresse."); 
theform.Adresse.focus(); 
return (false); 
} 
if (theform.Ville.value == "") 
{ 
alert("Vous devez inscrire votre ville."); 
theform.Ville.focus(); 
return (false); 
} 
if (theform.Province.value == "") 
{ 
alert("Vous devez inscrire votre province."); 
theform.Province.focus(); 
return (false); 
} 
if (theform.Pays.value == "") 
{ 
alert("Vous devez inscrire votre pays."); 
theform.Pays.focus(); 
return (false); 
} 
if (theform.Code_Postal.value == "") 
{ 
alert("Vous devez inscrire votre code postal."); 
theform.Code_Postal.focus(); 
return (false); 
} 
if (theform.Courriel.value == "") 
{ 
alert("Vous devez inscrire votre adresse courriel."); 
theform.Courriel.focus(); 
return (false); 
} 
return (true); 
} 

