<html>
<body>
<script>
function ToPwdOk(){
    document.onclick=function(){
        document.getElementById("txtPwdOk").focus();
    }
}
</script>
<input type="text" id="txtPwd"  onblur="ToPwdOk()"><br>
<input type="text" id="txtPwdOk" >
</body>
</html>