<script type="text/javascript"> $(document).ready(function () { var myPlugin = $("input[id='Password']").password_strength();
$("[id='submit']").click(function () { return myPlugin.metReq(); //return true or false });
$("[id='passwordPolicy']").click(function (event) { var width = 350, height = 300, left = (screen.width / 2) - (width / 2), top = (screen.height / 2) - (height / 2); window.open("PasswordPolicy.xml", 'Password_poplicy', 'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top); event.preventDefault(); return false; }); }); </script>
|