// JavaScript Document
  function openWindow(url, w, h) {
    var options = "width=" + w + ",height=" + h + ",";
    options += "resizable=no,scrollbars=yes,status=yes,";
    options += "menubar=no,toolbar=no,location=no,directories=no";
    var newWin = window.open(url, 'newWin', options);
    newWin.focus();
  }

function form_data_Validator(theForm)
{

  if (theForm.nom.value == "")
  {
    alert("Tapez une valeur pour le champ \"Nom / Prénom\".");
    theForm.nom.focus();
    return (false);
  }

  if (theForm.telephone.value == "")
  {
    alert("Tapez une valeur pour le champ \"Téléphone\".");
    theForm.telephone.focus();
    return (false);
  }
  return (true);
}
