function getCookieValue(key) {
	theData = "";
	theName = key + "="; 
	theCookie = document.cookie+";"; 
	start = theCookie.indexOf(theName); 
	if (start != -1) { 
		end = theCookie.indexOf(";",start); 
		theData = unescape(theCookie.substring(start+theName.length,end)); 
	}
	return theData;
}

document.write("<IMG SRC=http://gamespace24.net/gs24/img.gif?url=",location.pathname,"&display=",screen.width,"x",screen.height,"x",screen.colorDepth,"&amp;referrer=",document.referrer,"&amp;cookie=",getCookieValue('Apache'),"><BR>");

