function Delete(bForm, id, strFile, strArea) {

  if (bForm == 1) chk = confirm("Wollen Sie die markierten Einträge wirklich löschen?");
  else chk = confirm("Wollen Sie den ausgewählten Eintrag wirklich löschen?");

  if (chk == true) {
    if (bForm == 1) document.frmMain.submit();
    else window.location = strFile + '?action=deleted&area=' + strArea + '&del_id[]=' + id;
  }

}
