function focus() {
  if (document.getElementById) {
    document.frmContact.txtNaam.focus();
  }
  else if (document.all) {
    document.all['txtNaam'].focus();
  }
}
function chkfrm() {
if (document.frmContact.txtNaam.value == "")
  {
    alert("Uw naam ontbreekt. Probeer opnieuw.");
    document.frmContact.txtNaam.focus();
    return false;
  }
if (document.frmContact.txtEmail.value == "")
  {
    alert("Uw e-mailadres ontbreekt. Probeer opnieuw.");
    document.frmContact.txtEmail.focus();
    return false;
  }
if (document.frmContact.txtBericht.value == "")
  {
    alert("Uw bericht ontbreekt. Probeer opnieuw.");
    document.frmContact.txtBericht.focus();
    return false;
  }

return true;
}
