function clickAdver(adverid){
	jQuery.ajax({
        type: 'post',
        url: "/include/clickadver/adverid/" + adverid,
        dataType: 'json',
        async: true,
        success: function(returnValue) {
            
        },
        error: function(data) {
            //alert("数据读取错误");
        }
    });
}
