If you have the security code turned off for login and then try to use the Quick Login, you get a Javascript error reading "document.frmLogin.SecurityCode is null or not an object", since the javascript is still trying to place focus on the security code box.
To fix it, open login_user.asp, go to line 414, and change it from
<script>document.frmLogin.<% If Request.Form("QUIK") Then Response.Write("securityCode") Else Response.Write("name") %>.focus()</script> |
to
<script>document.frmLogin.<% If Request.Form("QUIK") And blnLongSecurityCode Then Response.Write("securityCode") Else Response.Write("name") %>.focus()</script> |
.
Blair