setCookie('fb_bookmarks_' + id, data);
}
+function getCookieConsent(id) {
+ var cookieKey = 'cookieConsent';
+ if (location.host == 'workshop.fluidbook.com') {
+ cookieKey = 'fluidbook.' + id + '.' + cookieKey;
+ }
+ return getCookie(cookieKey);
+}
+
+function setCookieConsent(id) {
+ var cookieKey = 'cookieConsent';
+ if (location.host == 'workshop.fluidbook.com') {
+ cookieKey = 'fluidbook.' + id + '.' + cookieKey;
+ }
+ setCookie(cookieKey, '1');
+}
+
function popupFS(page) {
if (page == undefined) {
page = 0;