function chkfrm() {
	
if (document.frmInfo.txtNaam.value == "")
  {
    alert("Le champs nom est vide.");
    document.frmInfo.txtNaam.focus();
    return false;
  }
   if (document.frmInfo.txtTelefoon.value == "")
  {
    alert("Le champs téléphone est vide.");
    document.frmInfo.txtTelefoon.focus();
    return false;
  }
  if (document.frmInfo.txtEmailadres.value == "")
  {
    alert("Le champs e-mail est vide.");
    document.frmInfo.txtEmailadres.focus();
    return false;
  }
 
return true;
}

function CheckTimeInfoForm() 
{
  if (document.frmInfo.txtBedrijf.value == "")
  {
    alert("Le champs société est vide.");
    document.frmInfo.txtBedrijf.focus();
    return false;
  }
  if (document.frmInfo.txtNaam.value == "")
  {
    alert("Le champs nom est vide.");
    document.frmInfo.txtNaam.focus();
    return false;
  }
  if (document.frmInfo.txtTelefoon.value == "")
  {
    alert("Le champs téléphone est vide.");
    document.frmInfo.txtTelefoon.focus();
    return false;
  }
  if (document.frmInfo.txtEmailadres.value == "")
  {
    alert("Le champs e-mail est vide.");
    document.frmInfo.txtEmailadres.focus();
    return false;
  }
 
return true;
}
