Index: /EWD/ewdapps/so/pages/index.ewd
===================================================================
--- /EWD/ewdapps/so/pages/index.ewd	(revision 1314)
+++ /EWD/ewdapps/so/pages/index.ewd	(revision 1315)
@@ -13,4 +13,6 @@
     <script type="text/javascript">
         var VISTA = {};  // Mi Casa
+
+        // Makes the EWD Error show up in a div rather than a pop-up
         VISTA.redirectEWDErrorToDiv = function () {
             EWD.page.errorMessage = function (msg) {
@@ -21,4 +23,22 @@
                 }
             };
+        };
+        
+        // If AC contains an ; disable Verify Code field
+        VISTA.checkAC = function (ac) {
+            if (ac.indexOf(";") > -1)
+            {
+                var vc = document.getElementById("vc");
+                vc.disabled = "disabled";
+                vc.placeholder = "ALREADY ENTERED";
+                vc.style.background = "#646060";
+            }
+            else
+            {
+                var vc = document.getElementById("vc");
+                vc.disabled = null;
+                vc.placeholder = "Verify Code";
+                vc.style.background = null;
+            }
         };
     </script>
@@ -40,9 +60,9 @@
                     <tr>
                     <td valign="middle"><label for="ac">Access Code</label></td>
-                    <td valign="middle"><input id="ac" type="password" placeholder="Access Code" autofocus required></td>
+                    <td valign="middle"><input id="ac" type="password" oninput="VISTA.checkAC(this.value)" placeholder="Access Code" autofocus required></td>
                     </tr>
                     <tr>
                     <td valign="middle"><label for="vc">Verify Code</label></td>
-                    <td valign="middle"><input id="vc" type="password" placeholder="Verify Code" required></td>
+                    <td valign="middle"><input id="vc" type="password" placeholder="Verify Code"></td>
                     </tr>
                     <tr>
