function stat(a,b,c){
	 $.ajax({
	   type: "POST",
	   url: "/stat.php?r="+Math.random(),
	   data: "a=" + a + "&b=" + b + "&c=" + c,
	   success: function(msg){
		 //alert(msg)
	   }
	 });
}