Index: lams_tool_forum/conf/xdoclet/struts-actions.xml
===================================================================
diff -u -rb2d0900461fb1911e1881b92bea75edb39c6401b -r139523bb20c86ecde4601e198801a737d96d7556
--- lams_tool_forum/conf/xdoclet/struts-actions.xml	(.../struts-actions.xml)	(revision b2d0900461fb1911e1881b92bea75edb39c6401b)
+++ lams_tool_forum/conf/xdoclet/struts-actions.xml	(.../struts-actions.xml)	(revision 139523bb20c86ecde4601e198801a737d96d7556)
@@ -233,6 +233,12 @@
 		    parameter="init" >
 				        
 		
+		
+				        
+		
 	
 		
 				        
 		
+		
+				        
+		
 		";
+	    var reqIDVar = new Date();
+		var param = "toolContentID=" + ${param.toolContentID} +"&reqID="+reqIDVar.getTime();
+		messageLoading();
+	    var myAjax = new Ajax.Updater(
+		    	statisticTargetDiv,
+		    	url,
+		    	{
+		    		method:'get',
+		    		parameters:param,
+		    		onComplete:messageComplete,
+		    		evalScripts:true
+		    	}
+	    );
+		
+	}
+	
+	function showBusy(targetDiv){
+		if($(targetDiv+"_Busy") != null){
+			Element.show(targetDiv+"_Busy");
+		}
+	}
+	function hideBusy(targetDiv){
+		if($(targetDiv+"_Busy") != null){
+			Element.hide(targetDiv+"_Busy");
+		}				
+	}
+	function messageLoading(){
+		showBusy(statisticTargetDiv);
+	}
+	function messageComplete(){
+		hideBusy(statisticTargetDiv);
+	}        
 	//]]>        
 
\ No newline at end of file
Index: lams_tool_forum/web/jsps/monitoring/monitoring.jsp
===================================================================
diff -u -rdf638eb558ae2d18b300343911aa8e07e66e9697 -r139523bb20c86ecde4601e198801a737d96d7556
--- lams_tool_forum/web/jsps/monitoring/monitoring.jsp	(.../monitoring.jsp)	(revision df638eb558ae2d18b300343911aa8e07e66e9697)
+++ lams_tool_forum/web/jsps/monitoring/monitoring.jsp	(.../monitoring.jsp)	(revision 139523bb20c86ecde4601e198801a737d96d7556)
@@ -1,8 +1,8 @@
 <%@ include file="/common/taglibs.jsp"%>
-
+