/* JavaScript Document
# author: kevin Geng
# filename: jsajax.js
# filectime: 2008-04-25
*/

// update article hits
function up_hits(ctype,artid){
	$.ajax({ type: "GET", url: "/stat.php",data: "hit="+ctype+"&artid="+artid});	
}
// show article hits
function hits(objid,ctype,artid){
	var html = $.ajax({url: "/stat.php?act="+ctype+"&artid="+artid,async: false}).responseText;
	var Text = $.trim(html);
	$("#"+objid).text(Text);
}
// show pinglun nums
function pinglun(objid,ctype,artid){
	var html = $.ajax({url: "/stat.php?act="+ctype+"&artid="+artid,async: false}).responseText;
	var Text = $.trim(html);
	$("#"+objid).text(Text);
}
