if(document.getElementById && document.createTextNode)
{

	function init()
	{
		var sw=screen.width
		var r
		var c
		var cd
		if (navigator.appName != "Netscape") {
		cd=screen.colorDepth
		} else {
		cd=screen.pixelDepth
		}
		r=top.document.referrer;
		c=document.location;
		var parent = document.getElementById('siteinfo');
		var img = document.createElement('img');
		img.setAttribute("src",'http://stats.gate9.se/registerstat/index.php?acct=1690&sw='+sw+'&cd='+cd+'&r='+r+'&c='+c);
		img.setAttribute("class","hide");
		img.setAttribute("nocache","nocache");
		parent.appendChild(img);	
	}
	window.onload = function(){init();};
}