// Buckaroo Behaviour
self.name='payopener';

function 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 éénmalige machtiging of neem contact met ons op...");
	document.pform.pchoice[0].checked=true;
	return;
	}
 if (document.pform.pchoice[0].checked){

	document.pform.action="https://payment.buckaroo.nl/gateway/machtiging.asp";
	document.pform.target="_self";
	}
 if (document.pform.pchoice[1].checked){

	document.pform.action="https://payment.buckaroo.nl/gateway/ideal_payment.asp";
	document.pform.target="_self";
	}
 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');
	document.pform.BPE_Return_Success.value="http://www.1001stickers.nl/transfer_success";
	document.pform.action="https://payment.buckaroo.nl/gateway/transfer.asp";
	document.pform.target="_self";
	//document.pform.target="_pay"
	}	
	document.pform.submit();	
	}