var inReferrer = escape(document.referrer)+"";

var trackerURL = "http://stats.interwebforall.com/stat.php?";

function testForCpu() {
	if (navigator.cpuClass) {
		switch (navigator.cpuClass) {
			case "x86" : theCpu = "x86 [Intel processor]"; break;
			case "68K" : theCpu = "68K [Motorola processor]"; break;
			case "Alpha" : theCpu = "Alpha [Digital processor]"; break;
			case "PPC" : theCpu = "PPC [Motorola processor]"; break;
			case "Other" : theCpu = "Other"; break;
		}
	}
	else { theCpu = "Unknown"; }
	return theCpu;
}

var theCpu = testForCpu();
var sDimensions = screen.width + "x" + screen.height ;
var sDepth = screen.colorDepth;

var hhostname = location.hostname;
var hurl = location.href;

if (navigator.cookieEnabled) { var cookieSupport = navigator.cookieEnabled; }
else { var cookieSupport = "no"; }

var passData = "&cookieSupport=" + cookieSupport + "&theCpu=" + theCpu +
"&sDimensions=" + sDimensions + "&sDepth=" + sDepth + "&inReferrer=" + inReferrer +
"&host=" + hhostname + "&url=" + hurl;

document.write("<img src=\"" + trackerURL + passData + "\" alt=\"\" border=\"0\" width=\"0\" height=\"0\">");

