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=7647966b7343c29048673252e490f736&do=1&key=595be9f86516bdc6fac071846470ede1&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'));