function setResolutionStats(id){
			var theWidth, theHeight;
			// Window dimensions: 
			if (window.innerWidth) {
				theWidth=window.innerWidth;
			} else if (document.documentElement.clientWidth) {
				theWidth=document.documentElement.clientWidth;
			} else if (document.body) {
				theWidth=document.body.clientWidth;
			}
			
			if (window.innerHeight) {
				theHeight=window.innerHeight;
			} else if (document.documentElement.clientHeight) {
				theHeight=document.documentElement.clientHeight;
			} else if (document.body) {
				theHeight=document.body.clientHeight;
			}
			
			var width			= window.screen.width;
			var height		= window.screen.height;
						
			var id			= id;
			var url			= "/cms/modules/common/statistics/save_resolution.php";
			var para		=	"id="+id+"&width="+width+"&height="+height;

			makeRequest(url, "", para);
}