	var uniqueCode = (new Date()).getTime();
	var previousPage = "";
				
	document.write("<img src=\"/images/spacer.gif\" ID=\"imageStats\" border=\"0\" width=\"1\" height=\"1\">");
	
	function LogWebsiteStats()
	{
		var url = "/cgi-bin/stats.pl";
		url += "?mode=website";
		url += "&uniquecode=" + uniqueCode;
		url += "&referrer=" + escape(top.document.referrer);
		url += "&width=" + escape(screen.width);
		url += "&height=" + escape(screen.height);
		url += "&colordepth=" + escape(screen.colorDepth);
		url += "&location=" + escape(top.location);

		document.getElementById("imageStats").setAttribute("src",url);
	}

