﻿/// LegalNotices javascript

var LegalNotices = function() {
}

LegalNotices.prototype = {

    DownloadNotAllowed: function() {
        alert('Vous devez vous connecter');
        return false;
    },

    BeforeDownload: function(document, profile) {
        WRP_CHANNEL = document.Product;
        WRP_CONTENT = WRP_SECTION + "-" + document.Product;
        return WReportManager.Register("Documents",
            document.WReportAlias + "-" + document.Product,
            null,
            [{ key: 1, name: profile}]);
    }
}

var legalNotices = new LegalNotices();
