// JavaScript Document

// Ce code à été développé par la société Pixelus.fr

// Toute reproduction interdite ©2008 Pixelus
function Validat(theForm)

{

  if (theForm.nom.value == "")

  {

    alert("Le champs \"Nom\" est vide !");

    theForm.nom.focus();

    return (false);

  }

  if (theForm.mail.value == "")

  {

    alert("Le champs \"e-mail\" est vide !");

    theForm.mail.focus();

    return (false);

  }

 if (theForm.msg.value == "")

  {

    alert("Le champs \"Message\" est vide !");

    theForm.msg.focus();

    return (false);

  }

  return (true);

}



