function ajaxCustomFeel(page,pid,tag){
	
var idTag="comnt_list";
var url = "/ajaxHtml/ajaxCustomFeel.asp";
var pars = "page="+page+"&id="+pid+"&tag="+tag;
//alert(pars);

var myAjax = new Ajax.Updater(
		{success: idTag},
		url,
		{
		asynchronous:true,
		method: 'get',
		parameters: pars,
		//insertion: Insertion.Bottom,
		onFailure: reportError,
		encoding:'utf-8',
		//onCreate:createCF,
		//onComplete:completeCF,
		contentType:'application/x-www-form-urlencoded'
		}
	);
}

function reportError(request){
	alert('对不起，服务器内部错误，请稍后再试：）');
}

function createCF(){Element.show('systemWorkingCF');}
function completeCF() {Element.hide('systemWorkingCF');}
