//self.name='payopener'; function closePayScreen(){ document.getElementById('payframe').src='orderclose.php?portalID=2'; } function openPayScreen(){ show('overlay'); document.getElementById('overlay').style.height = document.getElementById('site').offsetHeight+ 'px'; show('orderscreen'); return false; } function pay(){ document.pform.target="_pay"; if (!document.pform.pchoice[0].checked && !document.pform.pchoice[1].checked && !document.pform.pchoice[2].checked){ alert("Kies eerst de gewenste betaalmethode"); return; } if (document.pform.pchoice[1].checked && document.pform.BPE_Issuer.value=="X"){ alert("U kunt uitsluitend met iDeal betalen\nals u bankiert bij één van de genoemde banken.\nSelecteer creditcard of neem contact met ons op..."); document.pform.pchoice[0].checked=true; return; } if (document.pform.pchoice[0].checked){ openPayScreen(); //window.open('','_pay','toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=no, resizable=no,width=800, height=600, top=100, left=150'); document.pform.action="https://payment.buckaroo.nl/sslplus/request_for_authorization.asp" //document.location='?cartopt=clear&portalID=2'; } if (document.pform.pchoice[1].checked){ openPayScreen(); //window.open('','_pay','toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, width=800, height=600, top=100, left=150'); document.pform.action="https://payment.buckaroo.nl/gateway/ideal_payment.asp" //document.location='?cartopt=clear&portalID=2'; } if (document.pform.pchoice[2].checked){ //window.open('','_pay','toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, width=800, height=600, top=100, left=150'); openPayScreen(); document.pform.action="https://payment.buckaroo.nl/gateway/transfer.asp" //document.location='?cartopt=clear&portalID=2'; } document.pform.submit(); }