var sa={
	init:function(){
		sa.img=new Image();
		//var r=RegExp("^https?://[^/]*"+location.host.replace(/^www\./i,"")+"/","i").test(document.referrer)?"":document.referrer;
		var title=sa.enc(document.title);
		var href=sa.enc(location.pathname+location.search);
		var url='siteAdmin/simplestats/logger.php?title='+title+'&href='+href+'&x='+Math.random();
		//alert(url);
		sa.img.src=url;
	},
	isset:function(e){
		return(typeof(window[e])!="undefined");
	},
	enc:function(e){
		return encodeURIComponent?encodeURIComponent(e):escape(e);
	}
};
sa.init();

