var stats = new Stats(); stats.save(); function Stats() { this.save = function() { var now = new Date(); var path = 'https://christiansattel.de/stts/stts.php?key=Fu2kT6W8z65u8cOnw39I71H1EEU3leAMwf25'; // path += '&ref=' + this.getRef +'&url=' + this.getURL + '&title=' + this.getTitle + '&ua=' + this.getUA + '&screen=' + this.getScreen + '&dim=' + this.getDim() + '&res=' + this.getRes + '&flash=' + this.getFlash(); path += '&ref=' + this.getRef +'&url=' + this.getURL + '&title=' + this.getTitle + '&ua=' + this.getUA + '&screen=' + this.getScreen + '&dim=' + this.getDim() + '&res=' + this.getRes; path += '&time=' +now.getTime(); // debug // document.write( path ); document.write( '' ); }; this.getRef = escape( document.referrer ); this.getURL = escape( document.URL ); this.getTitle = escape( document.title ); this.getUA = escape( navigator.userAgent.toLowerCase() ); this.getRes = screen.colorDepth; this.getScreen = screen.width+'x'+screen.height; this.getDim = function() { // edited from quirksmode.org var x, y; if ( self.innerHeight ) { x = window.innerWidth; y = window.innerHeight; } else if ( document.documentElement && document.documentElement.clientHeight ) { x = document.documentElement.clientWidth; y = document.documentElement.clientHeight; } else if ( document.body ) { x = document.body.clientWidth; y = document.body.clientHeight; } else { x = 0; y = 0; } return x + 'x' + y; }; // this.getFlash = function() { // edited from quirksmode.org /* var flashinstalled = 0; // 0 = not installed, 1 = installed var flashversion = 0; if ( navigator.plugins && navigator.plugins.length ) { x = navigator.plugins[ "Shockwave Flash" ]; if ( x ) { flashinstalled = 1; if ( x.description ) { y = x.description; flashversion = y.charAt( y.indexOf( '.' ) -1 ); } } else { flashinstalled = 0; } if ( navigator.plugins[ "Shockwave Flash 2.0" ] ) { flashinstalled = 1; flashversion = 2; } } else if ( navigator.mimeTypes && navigator.mimeTypes.length ) { x = navigator.mimeTypes[ 'application/x-shockwave-flash' ]; if ( x && x.enabledPlugin ) { flashinstalled = 1; } else { flashinstalled = 0; } } else { // IE WIN flash detection. for( var i = 8; i > 0; i-- ) { var flashversion = 0; try { var flash = new ActiveXObject( "ShockwaveFlash.ShockwaveFlash." + i ); flashinstalled = 1; flashversion = i; return flashinstalled + '-' + flashversion; } catch( e ) {} } } return flashinstalled + '-' + flashversion; }; */ }