/**
 * @author Unicorn Interactive
 */
function confirmDel(delUrl) {
  if (confirm("Proszę o potwierdzenie chęci usunięcia.")) {
    document.location = delUrl;
  }
}