    function vidPlayed(num) {
        var _opts = JSON.decode(Cookie.read('o'));
        if (!_opts) _opts = {};
        var v = num;
        if (!(v in _opts) || !_opts[v]) {
            _opts[v] = 1;
            Cookie.write('o', JSON.encode(_opts), {domain: '.mimakieurope.com', path: '/', duration: 1});
            return false;
        }
        return true;
    }
