function depositShowForm(B){var A=document.getElementById("deposit_paypal_acc_form");var E=document.getElementById("deposit_ach_acc_form");var D=document.getElementById("fund_to_wigix_button");if(B.checked&&parseInt(B.value)==1){E.style.display="none";A.style.display="block";D.style.display=""}else{if(B.checked&&parseInt(B.value)==2){A.style.display="none";E.style.display="block";var F=document.getElementById("has_ach2wgx_account");if(F.value=="1"){D.style.display=""}else{D.style.display="none"}}}var C=document.getElementById("fund_error_msg");C.style.display="none"}function submitFundForm(B){var C=B.form.money_amount;var A=document.getElementById("fund_error_msg");if(trim(C.value)==""||!isDecimal(C.value)||parseFloat(C.value)<=0){A.innerHTML="Please specify an amount larger than $10.";A.style.display="";return }if(parseFloat(C.value)<10){A.innerHTML="Please specify an amount larger than $10.";A.style.display="";return }A.style.display="none";if(B.form.deposit_method_ach.checked==true){B.form.action=B.form.https_url.value}B.form.submit();disableButton("fund_to_wigix_button")}
