﻿/// Product javascript

var Product = function() {
}

Product.prototype = {

    ShowWindow: function(params, profile) {
        //-- WReport
        var w_compteur = new wreport_counter('Video', WRP_SUBSECTION, null, null, null, 'Video', WRP_SUBSECTION);
        w_compteur.add_content(WRP_CONTENT);
        w_compteur.profiling_cookie_mode = 'off';
        w_compteur.add_profile(1, profile);
        w_compteur.count();
        //--

        var url = 'ShowHtmlPage.aspx?path=' + params.Path + '&file=' + params.File;
        getHtmlPage(url, params.Width, params.Height);
    }
}

var product = new Product();
