$(function() {
	$.each($("span[pageCounts=yes]"), function() {
		var countFlag = $(this);
		if (countFlag != null && countFlag[0] != "undefined") {
			var pageId = countFlag.attr("pageId");
			if (pageId == null || pageId == "undefined" || pageId.match(/^\s*$/)) {
				pageId = $("#eprotalCurrentPageId").val();
			}
			var moduleId = $("#eportalappPortletId").val();
			var url = '/eportal/ui?moduleId=' + moduleId + '&pageId=' + pageId + '&portal.url=/app/counting-front!savePageInfo.portlet';
			$.ajax({
				type : "post",
				url : url,
				dataType : "text",
				success : function(msg) {
					if (msg.match(/^\d*$/)) {
						countFlag.html(msg);
					} else {
						countFlag.html("1");
					}
				}
			});
		}
	});
});