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

function DeleteFile(id, filename) {
  if (confirm("Soll die Datei '" + filename + "' wirklich gelöscht werden?")) {
    window.location.href = "fileupload2.inc.php?mode=delfile&fileid=" + id;
  }
}

