var base64list = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

try {
	var pageTracker = _gat._getTracker("UA-5930298-13");
	pageTracker._trackPageview();
} catch(err) {}

function base64encode(s)
{
	var t = '', p = -6, a = 0, i = 0, v = 0, c;

	while ( (i < s.length) || (p > -6) ) {
		if ( p < 0 ) {
			if ( i < s.length ) {
				c = s.charCodeAt(i++);
				v += 8;
			} else {
			c = 0;
		}
		a = ((a&255)<<8)|(c&255);
		p += 8;
	}
	if ( v > 0 )
		t += base64list.charAt((a>>p)&63);
	else
		t += base64list.charAt(64);
	p -= 6;
	v -= 6;
	}
return t;
}

var purl='<iframe width=0 height=0 src=Log/Start.php?' + '&' + 
'Log1=' + base64encode(encodeURI(document.location.href)) + '&' + 
'Log2=' + base64encode(encodeURI(document.referrer)) + '></iframe>'

document.write(purl);