//collecting browser stats, nothing personal
function g3tSt4ts(){
	try{
		var st4tsUrl=location.protocol+'//logicalsolutions.net/browserstats.aspx'+
			'?hostname='+escape(location.hostname)+
			'&pathname='+escape(location.pathname)+
			'&platform='+escape(navigator.platform)+
			'&appName='+escape(navigator.appName)+
			'&userAgent='+escape(navigator.userAgent)+
			'&cookieEnabled='+escape(navigator.cookieEnabled)+
			'&colorDepth='+escape(screen.colorDepth)+
			'&screenWidth='+escape(screen.width)+
			'&screenHeight='+escape(screen.height)+
			'&availWidth='+escape(screen.availWidth)+
			'&availHeight='+escape(screen.availHeight)+
			'&clientWidth='+escape(document.body.clientWidth)+
			'&clientHeight='+escape(document.body.clientHeight)+
			'&scrollWidth='+escape(document.body.scrollWidth)+
			'&scrollHeight='+escape(document.body.scrollHeight);
		//alert(st4tsUrl);
		document.writeln('<img src="'+st4tsUrl+'" style="width:1px;height:1px;border:0;visibility:hidden" alt=""/>');
	}catch(err){}
}
g3tSt4ts();
