﻿function encode64(d){var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",c,a,b,g,h,f=0,i="";while(f<d.length){c=d.charCodeAt(f++);if(c>127)c=88;a=d.charCodeAt(f++);if(a>127)a=88;b=d.charCodeAt(f++);if(b>127)b=88;if(isNaN(b)){h=64;b=0}else h=b&63;if(isNaN(a)){g=64;a=0}else g=(a<<2|b>>6)&63;i+=e.charAt(c>>2&63)+e.charAt((c<<4|a>>4)&63)+e.charAt(g)+e.charAt(h)}return encodeURIComponent(i)}function stats(e){var b=encode64(document.referrer),a=encode64(window.location.pathname+location.search),c=new Date,d=c.getTime();document.writeln('<img src="http://tracker.doublespeed.de/count.php?sid='+e+"&p="+a+"&r="+b+"&t="+d+'" alt="" border="0" />\n')}