if (parseInt(navigator.appVersion)>3) {
	if (navigator.appName=="Netscape") {
		windowWidth = window.innerWidth;
		windowHeight = window.innerHeight;
	}
	if (navigator.appName.indexOf("Microsoft")!=-1) {
		windowWidth = document.body.offsetWidth;
		windowHeight = document.body.offsetHeight;
	}
}

document.write(
	"<img src=\"/stats.gif?screenW=" + screen.width + "&screenH=" + screen.height + "&windowW=" + windowWidth + "&windowH=" + windowHeight + "&depth=" + window.screen.colorDepth + "\" width=\"1\" height=\"1\">"
);
