var Mint = new Object(); Mint.save = function() { var now = new Date(); var debug = false; // this is set by php if (window.location.hash == '#Mint:Debug') { debug = true; }; var path = 'http://www.incobs.de/mint/?record' + ((debug)?'&debug&errors':'') + '&key=314e31373657316c38386c37786943474d3331'; // Loop through the different plug-ins to assemble the query string for (var developer in this) { for (var plugin in this[developer]) { if (this[developer][plugin] && this[developer][plugin].onsave) { path += this[developer][plugin].onsave(); }; }; }; // Slap the current time on there to prevent caching on subsequent page views in a few browsers path += '&'+now.getTime(); // Redirect to the debug page if (debug) { window.location.href = path; return; }; if (document.write) { document.write(''); } else { // Record this visit; uses XMLHttpRequest to play nice with pages served as application/xhtml+xml // Causes a security issue when served from a sub or other domain var data = false; /*@cc_on @*/ /*@if (@_jscript_version >= 5) try { data = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { data = new ActiveXObject("Microsoft.XMLHTTP"); } catch (E) { data = false; } } @end @*/ if (!data && typeof XMLHttpRequest!='undefined') { data = new XMLHttpRequest(); } if (data) { data.open("GET", path, true); data.send(null); } }; }; if (!Mint.SI) { Mint.SI = new Object(); } Mint.SI.Referrer = { onsave : function() { var encoded = 0; if (typeof Mint_SI_DocumentTitle == 'undefined') { Mint_SI_DocumentTitle = document.title; } else { encoded = 1; }; var referer = (window.decodeURI)?window.decodeURI(document.referrer):document.referrer; var resource = (window.decodeURI)?window.decodeURI(document.URL):document.URL; return '&referer=' + escape(referer) + '&resource=' + escape(resource) + '&resource_title=' + escape(Mint_SI_DocumentTitle) + '&resource_title_encoded=' + encoded; } }; if(!Mint.RHC3) Mint.RHC3 = new Object(); Mint.RHC3.SessionTracker = { acceptscookies : 0, onsave : function() { var st_key = 'no'; this.setcookie('eatscookies','yes'); cookiecheck = this.getcookie('eatscookies'); return '&eatscookies='+cookiecheck; }, getcookie : function(cookiename){ var thecookie = document.cookie; var crumbs = thecookie.split(';'); for(var i=0;i=3;i--) { if (p.description && p.description.indexOf(' ' + i + '.') != -1) { this.flashVersion = i; break; } } } } else if (ua.indexOf("msie") != -1 && ua.indexOf("win")!=-1 && parseInt(navigator.appVersion) >= 4 && ua.indexOf("16bit")==-1) { var vb = ' \nOn Error Resume Next \nDim obFlash \nFor i = ' + m + ' To 3 Step -1 \n Set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash." & i) \n If IsObject(obFlash) Then \n Mint.SI.UserAgent007.flashVersion = i \n Exit For \n End If \nNext \n<'+'/scr' + 'ipt\> \n'; document.write(vb); } else if (ua.indexOf("webtv/2.5") != -1) this.flashVersion = 3; else if (ua.indexOf("webtv") != -1) this.flashVersion = 2; return this.flashVersion; }, onsave : function() { this.resolution = screen.width+'x'+screen.height; return '&resolution=' + this.resolution + '&flash_version=' + this.flashVersion; } }; Mint.SI.UserAgent007.detectFlashVersion(); if (!Mint.SI) { Mint.SI = new Object(); } Mint.SI.WindowWidth = { onsave : function() { var width = -1; if (window.innerWidth) { width = window.innerWidth; } else if (document.getElementsByTagName) { var html = document.getElementsByTagName('html'); if (html[0].offsetWidth) { width = html[0].offsetWidth; } } return '&window_width=' + width; } }; Mint.save();