adclick = function(ptype, piseq, plink) {
	var purl = HOST_QUANGCAO+'ajax/adclick';
	var pdata = {
		type: ptype,
		iseq: piseq,
		refobjid: refobjid
	}
	$.ajax({
		cache	: false,
		async	: false,
		data	: pdata,
		url		: purl,
		dataType: 'jsonp',
		jsonp	: 'callback',
		success	: function(response) {
			if (response && plink!='') {
				location.href=plink;
			}
		}
	});
}
