<!--
	var usragnt;
	var logged;

	function LogThisRETURNFunc()
	{
		// do nothing;
	}

	function LogThis(x,y)
	{
		logged="YES";
	        if (window.XMLHttpRequest)
        	{
                	LogThisHTTPReq = new XMLHttpRequest();
	        }
        	else if (window.ActiveXObject)
	        {
        	        LogThisHTTPReq = new ActiveXObject("Microsoft.XMLHTTP");
	        }
	        LogThisHTTPReq.abort();
        	LogThisHTTPReq.onreadystatechange = LogThisRETURNFunc;
	        LogThisHTTPReq.open("POST", "/LogThis.php", true);
		LogThisHTTPReq.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
		LogThisHTTPReq.send("browser="+usragnt+"&x="+x+"&y="+y+"&xres="+window.screen.width+"&yres="+window.screen.height);
	}

	function init()
        {
		usragnt="NA";
                if (navigator.userAgent.indexOf("MSIE 7.0") != -1) { usragnt="IE7"; LogThis(document.body.clientWidth,document.body.clientHeight); }
                if (navigator.userAgent.indexOf("MSIE 6.0") != -1) { usragnt="IE6"; LogThis(document.documentElement.clientWidth,document.documentElement.clientHeight); }
                if (navigator.userAgent.indexOf("Firefox") != -1)  { usragnt="FF";  LogThis(window.innerWidth,window.innerHeight); }
                if (navigator.userAgent.indexOf("Safari") != -1) { usragnt="S"; LogThis(window.innerWidth,window.innerHeight); }
		if (logged != "YES") { LogThis(0,0); } 
	}

	window.onload=init;

// -->