function confirmDelete(delUrl) {
  if (confirm("Are you sure you want to remove this item from your cart?")) {
    document.location = delUrl;
  }
}

function confirmDeleteAll(delUrl) {
  if (confirm("Are you sure you want to remove all these items from your cart?")) {
    document.location = delUrl;
  }
}

function confirmDeleteItem(delUrl) {
  if (confirm("Are you sure you want to delete this item?")) {
    document.location = delUrl;
  }
}

function confirmDeleteUser(delUrl) {
  if (confirm("Are you sure you want to delete this user?")) {
    document.location = delUrl;
  }
}

function confirmReset(delUrl) {
  if (confirm("Are you sure you want to reset downloaded Items of all users?")) {
    document.location = delUrl;
  }
}

function confirmDeleteMessage(delUrl) {
  if (confirm("Are you sure you want to delete this message?")) {
    document.location = delUrl;
  }
}
