// JavaScript Document
<!--
function Validator(theForm)
{
  if (theForm.first_name.value == ""){
    alert("Merci de renseigner votre Prenom.");
    theForm.first_name.focus();
    return (false);
  }
  if (theForm.last_name.value == ""){
    alert("Merci de renseigner votre Nom.");
    theForm.last_name.focus();
    return (false);
  }
  var ok=0; 	
  var a=theForm.email.value;
  var test="" + a;
  for(var k=0; k < test.length-3;k++){
 	var c = test.substring(k,k+1);
		if(c == "@"){
			for(var l=k; l<test.length-2;l++){
				var c = test.substring(l,l+1);
				if(c == "."){
					ok=1;
				}
			}
		}
  }
  if (ok == 0){
	alert("Merci de specifier une adresse mail valide.");
	theForm.email.focus();
	return (false);
  }
  if (theForm.company.value == ""){
    alert("Merci de specifier votre societe.");
    theForm.company.focus();
    return (false);
  }
  return (true);
}
-->
