$(function(){
	d={	
		'pathname':location.pathname,
		'user':$('user-name').innerHTML,
		'oscpu':typeof navigator.oscpu!='undefined'?navigator.oscpu:'',
		'appName':navigator.appName,
		'appCodeName':navigator.appCodeName,
		'appVersion':navigator.appVersion,
		'userAgent':navigator.userAgent,
		'cookieEnabled':navigator.cookieEnabled,
		'language':typeof navigator.language!='undefined'?navigator.language:navigator.userLanguage,
		'platform':navigator.platform,
		'screenWidth':screen.width,
		'screenHeight':screen.height,
		'windowWidth':window.innerWidth,
		'windowHeight':window.innerHeight,
		'pageWidth':document.body.clientWidth,
		'pageHeight':document.body.clientHeight
	}
	$.ajax({url:'as.php',dataType:'json',data:d});
});
