<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
(function (LOG_URL, pageIdentifier) {
    var xmlhttp = new XMLHttpRequest();
    // The actual response does not matter. If error occurred during request it should be logged on server side.
    // If everything is OK there is no action to be performed.
    xmlhttp.open("POST", LOG_URL, true);
    xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xmlhttp.send(
        "title=" + encodeURIComponent(document.title) +
        "&amp;url=" + encodeURIComponent(window.location.href) +
        "&amp;referrer=" + encodeURIComponent(document.referrer) +
        "&amp;pageIdentifier=" + pageIdentifier
    );
})('/Kentico.Activities/KenticoActivityLogger/Log', 100690);</pre></body></html>