// If you're using frames, uncomment the parent.document.referrer
// line and comment the document.referrer one. Otherwise, you can
// leave them as they are.

// var refz = escape(parent.document.referrer)+"";
var inReferrer = escape(document.referrer)+"";

// URL to the tracker
// the question mark must stay at the end!
var trackerURL = "/cgi-bin/ufp/tracker.cgi?";

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 + "Bit";

if (navigator.cookieEnabled) { var cookieSupport = navigator.cookieEnabled; }
else { var cookieSupport = "no"; }

var passData = "&cookieSupport=" + cookieSupport + "&theCpu=" + theCpu + "&sDimensions=" + sDimensions + "&sDepth=" + sDepth + "&inReferrer=" + inReferrer;

document.write("<img src=\"" + trackerURL + passData + "\" alt=\"\" border=\"0\" width=\"0\" height=\"0\">");

