function focus() {
  if (document.getElementById) {
    document.frmAanmelden.txtGebruikersnaam.focus();
  }
  else if (document.all) {
    document.all['txtGebruikersnaam'].focus();
  }
}
function chkfrm() {
if (document.frmAanmelden.txtGebruikersnaam.value == "")
  {
    alert("Uw gebruikersnaam ontbreekt. Probeer opnieuw.");
    document.frmAanmelden.txtGebruikersnaam.focus();
    return false;
  }
if (document.frmAanmelden.txtWachtwoord.value == "")
  {
    alert("Uw wachtwoord ontbreekt. Probeer opnieuw.");
    document.frmAanmelden.txtWachtwoord.focus();
    return false;
  }
return true;
}
