function get_tongji(t0,t1)
{
	$('#'+t1).html("读取中...");
	$.ajax({
	type: "get",
	cache:false,
	url: "/tongji/index.php?id="+t0+"",
	timeout: 20000,
	error: function(){$('#'+t1).html(Ajax_msg);},
	success: function(t0){$('#'+t1).html(t0);}
	});
}