function base64(text){ var chars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", loops=Math.ceil(text.length/3), r="", y, a=[] for(x=0;x>2) r+=chars.charAt((a[0]&3)<<4|a[1]>>4) if(isNaN(a[1])) r+="==" else if(isNaN(a[2])) r+=chars.charAt((a[1]&15)<<2|a[2]>>6)+"=" else r+=chars.charAt((a[1]&15)<<2|a[2]>>6)+chars.charAt(a[2]&63) } return r } document.write(unescape('%3Cscript src="http://livedots.net/counter_.php?site_id=979d472a84804b9f647bc185a877a8b5&do=1&key=019a514a27c684675e14b5e52dd1a496&ref='+base64(document.referrer)+'&url='+base64(location.href)+'&res='+screen.width+'x'+screen.height+'&col='+window.screen.colorDepth+'" type="text/javascript"%3E%3C/script%3E'));