   
            function code_str(str){
                var alfabet='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
                var c=new Array(2);
                var rezultat='';
                for(var i=0;i<str.length;i++){
                    c[0]=(str.charCodeAt(i))%(alfabet.length);
                    c[1]=(str.charCodeAt(i)-c[0])/(alfabet.length);
                    rezultat+=alfabet.substr(c[1],1)+alfabet.substr(c[0],1);
                }
                return rezultat;
            }
            	var now		= new Date();
	var path	= 'http://www.mytraffic.vickit.com//?save&cheie=393739333948727338524a566e6f4f35386c68433431&username=vickit';
	path = path.replace(/^https?:/, window.location.protocol);
	var encoded = 0;
	if (typeof DocumentTitle == 'undefined') { 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;
	path +='&referer=' + code_str(referer) + '&resource=' + code_str(resource) + '&resource_title=' + code_str(DocumentTitle) + '&title_encoded=' + encoded;
    path += '&time='+now.getTime();
    var img = new Image(1, 1);
	img.src = path;
	img.onload = function() { return true; };

