var mboxCopyright = "Copyright 1996-2010. Adobe Systems Incorporated. All rights reserved";mboxUrlBuilder = function(a, b) { this.a = a; this.b = b; this.c = new Array(); this.d = function(e) { return e; }; this.f = null;};mboxUrlBuilder.prototype.addParameter = function(g, h) { var i = new RegExp('(\'|")'); if (i.exec(g)) { throw "Parameter '" + g + "' contains invalid characters"; } for (var j = 0; j < this.c.length; j++) { var k = this.c[j]; if (k.name == g) { k.value = h; return this; } } var l = new Object(); l.name = g; l.value = h; this.c[this.c.length] = l; return this;};mboxUrlBuilder.prototype.addParameters = function(c) { if (!c) { return this; } for (var j = 0; j < c.length; j++) { var m = c[j].indexOf('='); if (m == -1 || m == 0) { continue; } this.addParameter(c[j].substring(0, m), c[j].substring(m + 1, c[j].length)); } return this;};mboxUrlBuilder.prototype.setServerType = function(n) { this.o = n;};mboxUrlBuilder.prototype.setBasePath = function(f) { this.f = f;};mboxUrlBuilder.prototype.setUrlProcessAction = function(p) { this.d = p;};mboxUrlBuilder.prototype.buildUrl = function() { var q = this.f ? this.f : '/m2/' + this.b + '/mbox/' + this.o; var r = document.location.protocol == 'file:' ? 'http:' : document.location.protocol; var e = r + "//" + this.a + q; var s = e.indexOf('?') != -1 ? '&' : '?'; for (var j = 0; j < this.c.length; j++) { var k = this.c[j]; e += s + encodeURIComponent(k.name) + '=' + encodeURIComponent(k.value); s = '&'; } return this.t(this.d(e));};mboxUrlBuilder.prototype.getParameters = function() { return this.c;};mboxUrlBuilder.prototype.setParameters = function(c) { this.c = c;};mboxUrlBuilder.prototype.clone = function() { var u = new mboxUrlBuilder(this.a, this.b); u.setServerType(this.o); u.setBasePath(this.f); u.setUrlProcessAction(this.d); for (var j = 0; j < this.c.length; j++) { u.addParameter(this.c[j].name, this.c[j].value); } return u;};mboxUrlBuilder.prototype.t = function(v) { return v.replace(/\"/g, '&quot;').replace(/>/g, '&gt;');};mboxStandardFetcher = function() { };mboxStandardFetcher.prototype.getType = function() { return 'standard';};mboxStandardFetcher.prototype.fetch = function(w) { w.setServerType(this.getType()); document.write('<' + 'scr' + 'ipt src="' + w.buildUrl() + '" language="JavaScript"><' + '\/scr' + 'ipt>');};mboxStandardFetcher.prototype.cancel = function() { };mboxAjaxFetcher = function() { };mboxAjaxFetcher.prototype.getType = function() { return 'ajax';};mboxAjaxFetcher.prototype.fetch = function(w) { w.setServerType(this.getType()); var e = w.buildUrl(); this.x = document.createElement('script'); this.x.src = e; document.body.appendChild(this.x);};mboxAjaxFetcher.prototype.cancel = function() { };mboxMap = function() { this.y = new Object(); this.z = new Array();};mboxMap.prototype.put = function(A, h) { if (!this.y[A]) { this.z[this.z.length] = A; } this.y[A] = h;};mboxMap.prototype.get = function(A) { return this.y[A];};mboxMap.prototype.remove = function(A) { this.y[A] = undefined;};mboxMap.prototype.each = function(p) { for (var j = 0; j < this.z.length; j++ ) { var A = this.z[j]; var h = this.y[A]; if (h) { var B = p(A, h); if (B === false) { break; } } }};mboxFactory = function(C, b, D) { this.E = false; this.C = C; this.D = D; this.F = new mboxList(); mboxFactories.put(D, this); this.G = typeof document.createElement('div').replaceChild != 'undefined' && (function() { return true; })() && typeof document.getElementById != 'undefined' && typeof (window.attachEvent || document.addEventListener || window.addEventListener) != 'undefined' && typeof encodeURIComponent != 'undefined'; this.H = this.G && mboxGetPageParameter('mboxDisable') == null; var I = D == 'default'; this.J = new mboxCookieManager( 'mbox' + (I ? '' : ('-' + D)), (function() { return mboxCookiePageDomain(); })()); this.H = this.H && this.J.isEnabled() && (this.J.getCookie('disable') == null); if (this.isAdmin()) { this.enable(); } this.K(); this.L = mboxGenerateId(); this.M = mboxScreenHeight(); this.N = mboxScreenWidth(); this.O = mboxBrowserWidth(); this.P = mboxBrowserHeight(); this.Q = mboxScreenColorDepth(); this.R = mboxBrowserTimeOffset(); this.S = new mboxSession(this.L, 'mboxSession', 'session', 31 * 60, this.J); this.T = new mboxPC('PC', 1209600, this.J); this.w = new mboxUrlBuilder(C, b); this.U(this.w, I); this.V = new Date().getTime(); this.W = this.V; var X = this; this.addOnLoad(function() { X.W = new Date().getTime(); }); if (this.G) { this.addOnLoad(function() { X.E = true; X.getMboxes().each(function(Y) { Y.setFetcher(new mboxAjaxFetcher()); Y.finalize(); }); }); this.limitTraffic(100, 10368000); if (this.H) { this.Z(); this._ = new mboxSignaler(function(ab, c) { return X.create(ab, c); }, this.J); } }};mboxFactory.prototype.isEnabled = function() { return this.H;};mboxFactory.prototype.getDisableReason = function() { return this.J.getCookie('disable');};mboxFactory.prototype.isSupported = function() { return this.G;};mboxFactory.prototype.disable = function(bb, cb) { if (typeof bb == 'undefined') { bb = 60 * 60; } if (typeof cb == 'undefined') { cb = 'unspecified'; } if (!this.isAdmin()) { this.H = false; this.J.setCookie('disable', cb, bb); }};mboxFactory.prototype.enable = function() { this.H = true; this.J.deleteCookie('disable');};mboxFactory.prototype.isAdmin = function() { return document.location.href.indexOf('mboxEnv') != -1;};mboxFactory.prototype.limitTraffic = function(db, bb) {};mboxFactory.prototype.addOnLoad = function(eb) { if (this.isDomLoaded()) { eb(); } else { var fb = false; var gb = function() { if (fb) { return; } fb = true; eb(); }; this.hb.push(gb); if (this.isDomLoaded() && !fb) { gb(); } }};mboxFactory.prototype.getEllapsedTime = function() { return this.W - this.V;};mboxFactory.prototype.getEllapsedTimeUntil = function(ib) { return ib - this.V;};mboxFactory.prototype.getMboxes = function() { return this.F;};mboxFactory.prototype.get = function(ab, jb) { return this.F.get(ab).getById(jb || 0);};mboxFactory.prototype.update = function(ab, c) { if (!this.isEnabled()) { return; } if (!this.isDomLoaded()) { var X = this; this.addOnLoad(function() { X.update(ab, c); }); return; } if (this.F.get(ab).length() == 0) { throw "Mbox " + ab + " is not defined"; } this.F.get(ab).each(function(Y) { Y.getUrlBuilder() .addParameter('mboxPage', mboxGenerateId()); Y.load(c); });};mboxFactory.prototype.create = function( ab, c, kb) { if (!this.isSupported()) { return null; } var e = this.w.clone(); e.addParameter('mboxCount', this.F.length() + 1); e.addParameters(c); var jb = this.F.get(ab).length(); var lb = this.D + '-' + ab + '-' + jb; var mb; if (kb) { mb = new mboxLocatorNode(kb); } else { if (this.E) { throw 'The page has already been loaded, can\'t write marker'; } mb = new mboxLocatorDefault(lb); } try { var X = this; var nb = 'mboxImported-' + lb; var Y = new mbox(ab, jb, e, mb, nb); if (this.H) { Y.setFetcher( this.E ? new mboxAjaxFetcher() : new mboxStandardFetcher()); } Y.setOnError(function(ob, n) { Y.setMessage(ob); Y.activate(); if (!Y.isActivated()) { X.disable(60 * 60, ob); window.location.reload(false); } }); this.F.add(Y); } catch (pb) { this.disable(); throw 'Failed creating mbox "' + ab + '", the error was: ' + pb; } var qb = new Date(); e.addParameter('mboxTime', qb.getTime() - (qb.getTimezoneOffset() * 60000)); return Y;};mboxFactory.prototype.getCookieManager = function() { return this.J;};mboxFactory.prototype.getPageId = function() { return this.L;};mboxFactory.prototype.getPCId = function() { return this.T;};mboxFactory.prototype.getSessionId = function() { return this.S;};mboxFactory.prototype.getSignaler = function() { return this._;};mboxFactory.prototype.getUrlBuilder = function() { return this.w;};mboxFactory.prototype.U = function(e, I) { e.addParameter('mboxHost', document.location.hostname) .addParameter('mboxSession', this.S.getId()); if (!I) { e.addParameter('mboxFactoryId', this.D); } if (this.T.getId() != null) { e.addParameter('mboxPC', this.T.getId()); } e.addParameter('mboxPage', this.L); e.addParameter('screenHeight', this.M); e.addParameter('screenWidth', this.N); e.addParameter('browserWidth', this.O); e.addParameter('browserHeight', this.P); e.addParameter('browserTimeOffset', this.R); e.addParameter('colorDepth', this.Q); e.addParameter('mboxXDomain', "enabled"); e.setUrlProcessAction(function(e) { e += '&mboxVersion=' + mboxVersion; return e; });};mboxFactory.prototype.rb = function() { return "";};mboxFactory.prototype.Z = function() { document.write('<style>.' + 'mboxDefault' + ' { visibility:hidden; }</style>');};mboxFactory.prototype.isDomLoaded = function() { return this.E;};mboxFactory.prototype.K = function() { if (this.hb != null) { return; } this.hb = new Array(); var X = this; (function() { var sb = document.addEventListener ? "DOMContentLoaded" : "onreadystatechange"; var tb = false; var ub = function() { if (tb) { return; } tb = true; for (var i = 0; i < X.hb.length; ++i) { X.hb[i](); } }; if (document.addEventListener) { document.addEventListener(sb, function() { document.removeEventListener(sb, arguments.callee, false); ub(); }, false); window.addEventListener("load", function(){ document.removeEventListener("load", arguments.callee, false); ub(); }, false); } else if (document.attachEvent) { if (self !== self.top) { document.attachEvent(sb, function() { if (document.readyState === 'complete') { document.detachEvent(sb, arguments.callee); ub(); } }); } else { var vb = function() { try { document.documentElement.doScroll('left'); ub(); } catch (wb) { setTimeout(vb, 13); } }; vb(); } } if (document.readyState === "complete") { ub(); } })();};mboxSignaler = function(xb, J) { this.J = J; var yb = J.getCookieNames('signal-'); for (var j = 0; j < yb.length; j++) { var zb = yb[j]; var Ab = J.getCookie(zb).split('&'); var Y = xb(Ab[0], Ab); Y.load(); J.deleteCookie(zb); }};mboxSignaler.prototype.signal = function(Bb, ab ) { this.J.setCookie('signal-' + Bb, mboxShiftArray(arguments).join('&'), 45 * 60);};mboxList = function() { this.F = new Array();};mboxList.prototype.add = function(Y) { if (Y != null) { this.F[this.F.length] = Y; }};mboxList.prototype.get = function(ab) { var B = new mboxList(); for (var j = 0; j < this.F.length; j++) { var Y = this.F[j]; if (Y.getName() == ab) { B.add(Y); } } return B;};mboxList.prototype.getById = function(Cb) { return this.F[Cb];};mboxList.prototype.length = function() { return this.F.length;};mboxList.prototype.each = function(p) { if (typeof p != 'function') { throw 'Action must be a function, was: ' + typeof(p); } for (var j = 0; j < this.F.length; j++) { p(this.F[j]); }};mboxLocatorDefault = function(g) { this.g = 'mboxMarker-' + g; document.write('<div id="' + this.g + '" style="visibility:hidden;display:none">&nbsp;</div>');};mboxLocatorDefault.prototype.locate = function() { var Db = document.getElementById(this.g); while (Db != null) { if (Db.nodeType == 1) { if (Db.className == 'mboxDefault') { return Db; } } Db = Db.previousSibling; } return null;};mboxLocatorDefault.prototype.force = function() { var Eb = document.createElement('div'); Eb.className = 'mboxDefault'; var Fb = document.getElementById(this.g); Fb.parentNode.insertBefore(Eb, Fb); return Eb;};mboxLocatorNode = function(Gb) { this.Db = Gb;};mboxLocatorNode.prototype.locate = function() { return typeof this.Db == 'string' ? document.getElementById(this.Db) : this.Db;};mboxLocatorNode.prototype.force = function() { return null;};mboxCreate = function(ab ) { var Y = mboxFactoryDefault.create( ab, mboxShiftArray(arguments)); if (Y) { Y.load(); } return Y;};mboxDefine = function(kb, ab ) { var Y = mboxFactoryDefault.create(ab, mboxShiftArray(mboxShiftArray(arguments)), kb); return Y;};mboxUpdate = function(ab ) { mboxFactoryDefault.update(ab, mboxShiftArray(arguments));};mbox = function(g, Hb, w, Ib, nb) { this.Jb = null; this.Kb = 0; this.mb = Ib; this.nb = nb; this.Lb = null; this.Mb = new mboxOfferContent(); this.Eb = null; this.w = w; this.message = ''; this.Nb = new Object(); this.Ob = 0; this.Hb = Hb; this.g = g; this.Pb(); w.addParameter('mbox', g) .addParameter('mboxId', Hb); this.Qb = function() {}; this.Rb = function() {}; this.Sb = null;};mbox.prototype.getId = function() { return this.Hb;};mbox.prototype.Pb = function() { if (this.g.length > 250) { throw "Mbox Name " + this.g + " exceeds max length of " + "250 characters."; } else if (this.g.match(/^\s+|\s+$/g)) { throw "Mbox Name " + this.g + " has leading/trailing whitespace(s)."; }};mbox.prototype.getName = function() { return this.g;};mbox.prototype.getParameters = function() { var c = this.w.getParameters(); var B = new Array(); for (var j = 0; j < c.length; j++) { if (c[j].name.indexOf('mbox') != 0) { B[B.length] = c[j].name + '=' + c[j].value; } } return B;};mbox.prototype.setOnLoad = function(p) { this.Rb = p; return this;};mbox.prototype.setMessage = function(ob) { this.message = ob; return this;};mbox.prototype.setOnError = function(Qb) { this.Qb = Qb; return this;};mbox.prototype.setFetcher = function(Tb) { if (this.Lb) { this.Lb.cancel(); } this.Lb = Tb; return this;};mbox.prototype.getFetcher = function() { return this.Lb;};mbox.prototype.load = function(c) { if (this.Lb == null) { return this; } this.setEventTime("load.start"); this.cancelTimeout(); this.Kb = 0; var w = (c && c.length > 0) ? this.w.clone().addParameters(c) : this.w; this.Lb.fetch(w); var X = this; this.Ub = setTimeout(function() { X.Qb('browser timeout', X.Lb.getType()); }, 15000); this.setEventTime("load.end"); return this;};mbox.prototype.loaded = function() { this.cancelTimeout(); if (!this.activate()) { var X = this; setTimeout(function() { X.loaded(); }, 100); }};mbox.prototype.activate = function() { if (this.Kb) { return this.Kb; } this.setEventTime('activate' + ++this.Ob + '.start'); if (this.show()) { this.cancelTimeout(); this.Kb = 1; } this.setEventTime('activate' + this.Ob + '.end'); return this.Kb;};mbox.prototype.isActivated = function() { return this.Kb;};mbox.prototype.setOffer = function(Mb) { if (Mb && Mb.show && Mb.setOnLoad) { this.Mb = Mb; } else { throw 'Invalid offer'; } return this;};mbox.prototype.getOffer = function() { return this.Mb;};mbox.prototype.show = function() { this.setEventTime('show.start'); var B = this.Mb.show(this); this.setEventTime(B == 1 ? "show.end.ok" : "show.end"); return B;};mbox.prototype.showContent = function(Vb) { if (Vb == null) { return 0; } if (this.Eb == null || !this.Eb.parentNode) { this.Eb = this.getDefaultDiv(); if (this.Eb == null) { return 0; } } if (this.Eb != Vb) { this.Wb(this.Eb); this.Eb.parentNode.replaceChild(Vb, this.Eb); this.Eb = Vb; } this.Xb(Vb); this.Rb(); return 1;};mbox.prototype.hide = function() { this.setEventTime('hide.start'); var B = this.showContent(this.getDefaultDiv()); this.setEventTime(B == 1 ? 'hide.end.ok' : 'hide.end.fail'); return B;};mbox.prototype.finalize = function() { this.setEventTime('finalize.start'); this.cancelTimeout(); if (this.getDefaultDiv() == null) { if (this.mb.force() != null) { this.setMessage('No default content, an empty one has been added'); } else { this.setMessage('Unable to locate mbox'); } } if (!this.activate()) { this.hide(); this.setEventTime('finalize.end.hide'); } this.setEventTime('finalize.end.ok');};mbox.prototype.cancelTimeout = function() { if (this.Ub) { clearTimeout(this.Ub); } if (this.Lb != null) { this.Lb.cancel(); }};mbox.prototype.getDiv = function() { return this.Eb;};mbox.prototype.getDefaultDiv = function() { if (this.Sb == null) { this.Sb = this.mb.locate(); } return this.Sb;};mbox.prototype.setEventTime = function(Yb) { this.Nb[Yb] = (new Date()).getTime();};mbox.prototype.getEventTimes = function() { return this.Nb;};mbox.prototype.getImportName = function() { return this.nb;};mbox.prototype.getURL = function() { return this.w.buildUrl();};mbox.prototype.getUrlBuilder = function() { return this.w;};mbox.prototype.Zb = function(Eb) { return Eb.style.display != 'none';};mbox.prototype.Xb = function(Eb) { this._b(Eb, true);};mbox.prototype.Wb = function(Eb) { this._b(Eb, false);};mbox.prototype._b = function(Eb, ac) { Eb.style.visibility = ac ? "visible" : "hidden"; Eb.style.display = ac ? "block" : "none";};mboxOfferContent = function() { this.Rb = function() {};};mboxOfferContent.prototype.show = function(Y) { var B = Y.showContent(document.getElementById(Y.getImportName())); if (B == 1) { this.Rb(); } return B;};mboxOfferContent.prototype.setOnLoad = function(Rb) { this.Rb = Rb;};mboxOfferAjax = function(Vb) { this.Vb = Vb; this.Rb = function() {};};mboxOfferAjax.prototype.setOnLoad = function(Rb) { this.Rb = Rb;};mboxOfferAjax.prototype.show = function(Y) { var bc = document.createElement('div'); bc.id = Y.getImportName(); bc.innerHTML = this.Vb; var B = Y.showContent(bc); if (B == 1) { this.Rb(); } return B;};mboxOfferDefault = function() { this.Rb = function() {};};mboxOfferDefault.prototype.setOnLoad = function(Rb) { this.Rb = Rb;};mboxOfferDefault.prototype.show = function(Y) { var B = Y.hide(); if (B == 1) { this.Rb(); } return B;};mboxCookieManager = function mboxCookieManager(g, cc) { this.g = g; this.cc = cc == '' || cc.indexOf('.') == -1 ? '' : '; domain=' + cc; this.dc = new mboxMap(); this.loadCookies();};mboxCookieManager.prototype.isEnabled = function() { this.setCookie('check', 'true', 60); this.loadCookies(); return this.getCookie('check') == 'true';};mboxCookieManager.prototype.setCookie = function(g, h, bb) { if (typeof g != 'undefined' && typeof h != 'undefined' && typeof bb != 'undefined') { var ec = new Object(); ec.name = g; ec.value = escape(h); ec.expireOn = Math.ceil(bb + new Date().getTime() / 1000); this.dc.put(g, ec); this.saveCookies(); }};mboxCookieManager.prototype.getCookie = function(g) { var ec = this.dc.get(g); return ec ? unescape(ec.value) : null;};mboxCookieManager.prototype.deleteCookie = function(g) { this.dc.remove(g); this.saveCookies();};mboxCookieManager.prototype.getCookieNames = function(fc) { var gc = new Array(); this.dc.each(function(g, ec) { if (g.indexOf(fc) == 0) { gc[gc.length] = g; } }); return gc;};mboxCookieManager.prototype.saveCookies = function() { var hc = new Array(); var ic = 0; this.dc.each(function(g, ec) { hc[hc.length] = g + '#' + ec.value + '#' + ec.expireOn; if (ic < ec.expireOn) { ic = ec.expireOn; } }); var jc = new Date(ic * 1000); document.cookie = this.g + '=' + hc.join('|') + '; expires=' + jc.toGMTString() + '; path=/' + this.cc;};mboxCookieManager.prototype.loadCookies = function() { this.dc = new mboxMap(); var kc = document.cookie.indexOf(this.g + '='); if (kc != -1) { var lc = document.cookie.indexOf(';', kc); if (lc == -1) { lc = document.cookie.indexOf(',', kc); if (lc == -1) { lc = document.cookie.length; } } var mc = document.cookie.substring( kc + this.g.length + 1, lc).split('|'); var nc = Math.ceil(new Date().getTime() / 1000); for (var j = 0; j < mc.length; j++) { var ec = mc[j].split('#'); if (nc <= ec[2]) { var oc = new Object(); oc.name = ec[0]; oc.value = ec[1]; oc.expireOn = ec[2]; this.dc.put(oc.name, oc); } } }};mboxSession = function(pc, qc, zb, rc, J) { this.qc = qc; this.zb = zb; this.rc = rc; this.J = J; this.sc = false; this.Hb = typeof mboxForceSessionId != 'undefined' ? mboxForceSessionId : mboxGetPageParameter(this.qc); if (this.Hb == null || this.Hb.length == 0) { this.Hb = J.getCookie(zb); if (this.Hb == null || this.Hb.length == 0) { this.Hb = pc; this.sc = true; } } J.setCookie(zb, this.Hb, rc);};mboxSession.prototype.getId = function() { return this.Hb;};mboxSession.prototype.forceId = function(tc) { this.Hb = tc; this.J.setCookie(this.zb, this.Hb, this.rc);};mboxPC = function(zb, rc, J) { this.zb = zb; this.rc = rc; this.J = J; this.Hb = typeof mboxForcePCId != 'undefined' ? mboxForcePCId : J.getCookie(zb); if (this.Hb != null) { J.setCookie(zb, this.Hb, rc); }};mboxPC.prototype.getId = function() { return this.Hb;};mboxPC.prototype.forceId = function(tc) { if (this.Hb != tc) { this.Hb = tc; this.J.setCookie(this.zb, this.Hb, this.rc); return true; } return false;};mboxGetPageParameter = function(g) { var B = null; var uc = new RegExp(g + "=([^\&]*)"); var vc = uc.exec(document.location); if (vc != null && vc.length >= 2) { B = vc[1]; } return B;};mboxSetCookie = function(g, h, bb) { return mboxFactoryDefault.getCookieManager().setCookie(g, h, bb);};mboxGetCookie = function(g) { return mboxFactoryDefault.getCookieManager().getCookie(g);};mboxCookiePageDomain = function() { var cc = (/([^:]*)(:[0-9]{0,5})?/).exec(document.location.host)[1]; var wc = /[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/; if (!wc.exec(cc)) { var xc = (/([^\.]+\.[^\.]{3}|[^\.]+\.[^\.]+\.[^\.]{2})$/).exec(cc); if (xc) { cc = xc[0]; } } return cc ? cc: "";};mboxShiftArray = function(yc) { var B = new Array(); for (var j = 1; j < yc.length; j++) { B[B.length] = yc[j]; } return B;};mboxGenerateId = function() { return (new Date()).getTime() + "-" + Math.floor(Math.random() * 999999);};mboxScreenHeight = function() { return screen.height;};mboxScreenWidth = function() { return screen.width;};mboxBrowserWidth = function() { return (window.innerWidth) ? window.innerWidth : document.documentElement ? document.documentElement.clientWidth : document.body.clientWidth;};mboxBrowserHeight = function() { return (window.innerHeight) ? window.innerHeight : document.documentElement ? document.documentElement.clientHeight : document.body.clientHeight;};mboxBrowserTimeOffset = function() { return -new Date().getTimezoneOffset();};mboxScreenColorDepth = function() { return screen.pixelDepth;};if (typeof mboxVersion == 'undefined') { var mboxVersion = 40; var mboxFactories = new mboxMap(); var mboxFactoryDefault = new mboxFactory('bitdefender.tt.omtrdc.net', 'bitdefender', 'default');};if (mboxGetPageParameter("mboxDebug") != null || mboxFactoryDefault.getCookieManager() .getCookie("debug") != null) { setTimeout(function() { if (typeof mboxDebugLoaded == 'undefined') { alert('Could not load the remote debug.\nPlease check your connection' + ' to Test&amp;Target servers'); } }, 60*60); document.write('<' + 'scr' + 'ipt language="Javascript1.2" src=' + '"http://admin5.testandtarget.omniture.com/admin/mbox/mbox_debug.jsp?mboxServerHost=bitdefender.tt.omtrdc.net' + '&clientCode=bitdefender"><' + '\/scr' + 'ipt>');};mboxScPluginFetcher = function(b, zc) { this.b = b; this.zc = zc;};mboxScPluginFetcher.prototype.Ac = function(w) { w.setBasePath('/m2/' + this.b + '/sc/standard'); this.Bc(w); var e = w.buildUrl(); e += '&scPluginVersion=1'; return e;};mboxScPluginFetcher.prototype.Bc = function(w) { var Cc = [ "dynamicVariablePrefix","visitorID","vmk","ppu","charSet", "visitorNamespace","cookieDomainPeriods","cookieLifetime","pageName", "currencyCode","variableProvider","channel","server", "pageType","transactionID","purchaseID","campaign","state","zip","events", "products","linkName","linkType","resolution","colorDepth", "javascriptVersion","javaEnabled","cookiesEnabled","browserWidth", "browserHeight","connectionType","homepage","pe","pev1","pev2","pev3", "visitorSampling","visitorSamplingGroup","dynamicAccountSelection", "dynamicAccountList","dynamicAccountMatch","trackDownloadLinks", "trackExternalLinks","trackInlineStats","linkLeaveQueryString", "linkDownloadFileTypes","linkExternalFilters","linkInternalFilters", "linkTrackVars","linkTrackEvents","linkNames","lnk","eo" ]; for (var j = 0; j < Cc.length; j++) { this.Dc(Cc[j], w); } for (var j = 1; j <= 50; j++) { this.Dc('prop' + j, w); this.Dc('eVar' + j, w); this.Dc('hier' + j, w); }};mboxScPluginFetcher.prototype.Dc = function(g, w) { var h = this.zc[g]; if (typeof(h) === 'undefined' || h === null || h === '') { return; } w.addParameter(g, h);};mboxScPluginFetcher.prototype.cancel = function() { };mboxStandardScPluginFetcher = function(b, zc) { mboxScPluginFetcher.call(this, b, zc);};mboxStandardScPluginFetcher.prototype = new mboxScPluginFetcher;mboxStandardScPluginFetcher.prototype.getType = function() { return 'standard';};mboxStandardScPluginFetcher.prototype.fetch = function(w) { w.setServerType(this.getType()); var e = this.Ac(w); document.write('<' + 'scr' + 'ipt src="' + e + '" language="JavaScript"><' + '\/scr' + 'ipt>');};mboxAjaxScPluginFetcher = function(b, zc) { mboxScPluginFetcher.call(this, b, zc);};mboxAjaxScPluginFetcher.prototype = new mboxScPluginFetcher;mboxAjaxScPluginFetcher.prototype.fetch = function(w) { w.setServerType(this.getType()); var e = this.Ac(w); this.x = document.createElement('script'); this.x.src = e; document.body.appendChild(this.x);};mboxAjaxScPluginFetcher.prototype.getType = function() { return 'ajax';};function mboxLoadSCPlugin(zc) { if (!zc) { return null; } zc.m_tt = function(zc) { var Ec = zc.m_i('tt'); Ec.H = true; Ec.b = 'bitdefender'; Ec['_t'] = function() { if (!this.isEnabled()) { return; } var Y = this.Gc(); if (Y) { var Tb = mboxFactoryDefault.isDomLoaded() ? new mboxAjaxScPluginFetcher(this.b, this.s) : new mboxStandardScPluginFetcher(this.b, this.s); Y.setFetcher(Tb); Y.load(); } }; Ec.isEnabled = function() { return this.H && mboxFactoryDefault.isEnabled(); }; Ec.Gc = function() { var ab = this.Hc(); var Eb = document.createElement('DIV'); return mboxFactoryDefault.create(ab, new Array(), Eb); }; Ec.Hc = function() { var Ic = this.s.events && this.s.events.indexOf('purchase') != -1; return 'SiteCatalyst: ' + (Ic ? 'purchase' : 'event'); }; }; return zc.loadModule('tt');};mboxFactoryDefault.addOnLoad(mboxAppendSession);var mboxSessionKeyword = "OFM";function mboxAppendAnchorTags() { var anchorTags = document.getElementsByTagName('a'); for(i = 0; i < anchorTags.length; i++) { if (anchorTags[i].href.indexOf(mboxSessionKeyword) != -1) { anchorTags[i].href = anchorTags[i].href.replace( mboxSessionKeyword,"mboxSession="+mboxFactoryDefault.getSessionId().getId()); } }}function mboxAppendForm() { var formTags = document.getElementsByTagName('form'); for(i = 0; i < formTags.length; i++) { if (formTags[i].action.indexOf(mboxSessionKeyword) != -1) { formTags[i].action = formTags[i].action.replace( mboxSessionKeyword,"mboxSession="+mboxFactoryDefault.getSessionId().getId()); } } }function mboxAppendSession() { mboxAppendAnchorTags(); /* mboxAppendForm(); */ }
