Index: lams_tool_sbmt/web/authoring/instructions.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/authoring/Attic/instructions.jsp,v diff -u -r1.15 -r1.16 --- lams_tool_sbmt/web/authoring/instructions.jsp 31 Aug 2006 05:48:27 -0000 1.15 +++ lams_tool_sbmt/web/authoring/instructions.jsp 11 Oct 2006 02:36:37 -0000 1.16 @@ -52,6 +52,16 @@ function onlineComplete(){ hideBusy(onlineArea); } + function showBusy(targetDiv){ + if($(targetDiv+"_Busy") != null){ + Element.show(targetDiv+"_Busy"); + } + } + function hideBusy(targetDiv){ + if($(targetDiv+"_Busy") != null){ + Element.hide(targetDiv+"_Busy"); + } + }