/*
 * Dutch Youth Regatta BUCKAROO payment portal
 *
 * launcher.js
 * (JavaScript script)
 *
 * @version 1.0; February the 18th, 2008
 * @author Jeroen Oosterlaar <jeroen.oosterlaar@marganza.nl>
 * @copyright 2008, Marganza
 */

function openPaymentModule(entryId, type)
{	
 	winRef = window.open("/buckaroo/portal.php?entryId=" + entryId + "&type=" + type + "&page=introduction", "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=525,height=400");
	winRef.opener = self;
	
	document.getElementById("paymentCCLink").innerHTML = "&raquo; Creditcard";
	document.getElementById("paymentIDEALLink").innerHTML = "&raquo; iDEAL";	
}