function pokervTransferOpen(){$("#pokervModal").modal("show");PokerVCreate()}function PokerVDeposit(){var n=$("#depositTxt").val();$.ajax({type:"POST",url:"/Game/POKERVDeposit",dataType:"html",data:{amount:n},success:function(n){$.alert("",n.toString());PokerVStatus_PopUp();$("#depositTxt").val("")}})}function PokerVWithdraw(){var n=$("#withdrawTxt").val();$.ajax({type:"POST",url:"/Game/POKERVWithdraw",dataType:"html",data:{amount:n},success:function(n){$.alert("",n.toString());PokerVStatus_PopUp();$("#withdrawTxt").val("")}})}function PokerVStatus_PopUp(){$.ajax({type:"POST",url:"/Game/POKERVStatus",dataType:"html",data:{},success:function(n){var t=$.parseJSON(n);$("#pokervBalancelbl").html(t.Result.Balance)}})}function PokerVCreate(){$.ajax({type:"POST",url:"/Game/PokerVCreate",dataType:"html",data:{},success:function(){PokerVStatus_PopUp()}})}function playnowBtn(){window.open("/game/pokerv","_blank")}