document.addEventListener("DOMContentLoaded", function () { // obtain cookieconsent plugin var cc = initCookieConsent(); // microsoft logo var logo = ''; var cookie = '🍪'; // run plugin with config object cc.run({ current_lang : 'en', autoclear_cookies : true, // default: false cookie_name: 'cc_cookie_demo1', // default: 'cc_cookie' cookie_expiration : 365, // default: 182 delay:1500, page_scripts: true, // default: false gui_options: { consent_modal: { layout: 'cloud', // box,cloud,bar position: 'bottom left', // bottom,middle,top + left,right,center transition: 'slide' // zoom,slide }, settings_modal: { layout: 'box', // box,bar // position: 'left', // right,left (available only if bar layout selected) transition: 'slide' // zoom,slide } }, onFirstAction: function(){ //console.log('onFirstAction fired'); }, onAccept: function (cookie) { //console.log('onAccept fired ...'); }, onChange: function (cookie, changed_preferences) { //console.log('onChange fired ...'); }, languages: { 'en': { consent_modal: { // title: cookie + ' We use cookies! ', description: '
Our website uses cookies to ensure you get the best experience on our website. Details can be found in our Privacy Policy
', /*primary_btn: { text: 'Accept all', role: 'accept_all' // 'accept_selected' or 'accept_all' }, secondary_btn: { text: 'Reject all', role: 'settings' // 'settings' or 'accept_necessary' }*/ }, settings_modal: { title: 'Cookie Settings', save_settings_btn: 'Save settings', accept_all_btn: 'Accept all', reject_all_btn: 'Reject all', close_btn_label: 'Close', cookie_table_headers: [ {col1: 'Cookie '}, {col2: 'Duration '}, {col3: 'Description '} ], blocks: [ { title: 'Customize Consent Preferences', description: '

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

We also use third-party cookies that help us analyze how you use this website, and store your preferences.

These cookies will only be stored in your browser with your prior consent.

You can choose to enable or disable some or all of these cookies but disabling some of them may affect your browsing experience.

', },/* { title: 'Strictly necessary cookies', description: 'These cookies are essential for the proper functioning of my website. Without these cookies, the website would not work properly', toggle: { value: 'necessary', enabled: true, readonly: true // cookie categories with readonly=true are all treated as "necessary cookies" } },*/ { title: 'Analytical Cookies', description: 'Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.', toggle: { value: 'analytics', // there are no default categories => you specify them enabled: false, readonly: false }, cookie_table: [ { col1: '_ga', col2: '2 years', col3: 'The _ga cookie, installed by Google Analytics, calculates visitor, session, campaign data, and also keeps track of site usage for the site\'s analytics report. The cookie stores information anonymously and assigns a randomly generated number to recognize unique visitors.' //is_regex: true }, { col1: '_gid', col2: '1 day', col3: 'Installed by Google Analytics, _gid cookie stores information on how visitors use a website, while also creating an analytics report of the website\'s performance. Some of the data that are collected include the number of visitors, their source, and the pages they visit anonymously.' }, { col1: '_gat', col2: '1 minute', col3: 'This cookie is installed by Google Universal Analytics to restrain the request rate and thus limit the collection of data on high-traffic sites.' }, { col1: 'CONSENT', col2: '2 years', col3: ' YouTube sets this cookie via embedded youtube-videos and registers anonymous statistical data.' }, { col1: ' instap-spses.6a48', col2: '30 minutes', col3: ' This cookie is used by Instapages to track unique visitors.' }, { col1: ' instap-spid.6a48', col2: ' 2 years', col3: ' This cookie is used by Instapages to track unique visitors.' }, { col1: '_gcl_au', col2: ' 3 months', col3: ' Provided by Google Tag Manager to experiment advertisement efficiency of websites using their services.' }, { col1: '_gat_gtag_UA_144842869_1', col2: ' 1 minute', col3: 'Set by Google to distinguish users.' } ] }, { title: 'Advertisement', toggle: { value: 'targeting', enabled: false, readonly: false }, cookie_table: [ { col1: '_fbp', col2: ' 3 months', col3: ' Facebook sets this cookie to display advertisements when the user is either on Facebook or on a digital platform powered by Facebook advertising, after visiting the website.' //is_regex: true }, { col1: 'fr', col2: '3 months', col3: 'Facebook sets this cookie to show relevant advertisements to users by tracking user behavior across the web, on sites that have Facebook pixel or Facebook social plugin.' }, { col1: 'YSC', col2: 'session', col3: 'YSC cookie is set by Youtube and is used to track the views of embedded videos on Youtube pages.' }, { col1: 'VISITOR_INFO1_LIVE', col2: ' 5 months 27 days', col3: ' A cookie set by YouTube to measure bandwidth that determines whether the user gets the new or old player interface.' }, { col1: ' yt-remote-device-id', col2: 'never', col3: ' YouTube sets this cookie to store the video preferences of the user using embedded YouTube video.' }, { col1: ' yt-remote-connected-devices', col2: ' never', col3: ' YouTube sets this cookie to store the video preferences of the user using embedded YouTube video.' } ] } ] } } } }); });