Index: /branches/rel_ag_9_4_5/proxy/lite/ThemeMP/welcome/index.html
===================================================================
--- /branches/rel_ag_9_4_5/proxy/lite/ThemeMP/welcome/index.html	(revision 20537)
+++ /branches/rel_ag_9_4_5/proxy/lite/ThemeMP/welcome/index.html	(working copy)
@@ -144,6 +144,7 @@
         <button id="vpnOff" class="btn d-none"></button>
         <span id="vpnMsg"></span>
         <div id="resCheckMsg"></div>
+        <div id="VRGLimitMsg"></div>
       </div>
       <div class="mobileVpn d-none">
         <button id="vpnStart" class="btn"></button>
Index: /branches/rel_ag_9_4_5/proxy/lite/ThemeMP/welcome/welcome.js
===================================================================
--- /branches/rel_ag_9_4_5/proxy/lite/ThemeMP/welcome/welcome.js	(revision 20537)
+++ /branches/rel_ag_9_4_5/proxy/lite/ThemeMP/welcome/welcome.js	(working copy)
@@ -559,6 +559,19 @@
             this.navbar();
             this.bindEvent()
             this.browseJudge();
+            setTimeout(function(){
+                var foundVariable = null, groupType = null;
+                for (var prop in window) {
+                    if (prop.indexOf('_AN_res_limit_check_') !== -1 && typeof window[prop] != "undefined") {
+                        foundVariable = window[prop];
+                        groupType = prop.replace('_AN_res_limit_check_', '');
+                        break;
+                    }
+                }
+                if (groupType && foundVariable) {
+                    $('#VRGLimitMsg').html("<h4>vpn resource group \"" + groupType + "\" reaches the maximum number</h4>");
+                }
+            }, 400);
         }
     }
     welcome.init();
