function DeleteLeft(id, title) {
  if (confirm("Soll der Punkt '" + title + "' wirklich gelöscht werden?")) {
    window.location.href = "admin.php?mode=delleft&leftid=" + id;
  }
}
