function payWithGiftVoucher() {
	var $ = document.id;
	if (!$('payWithGiftVoucher')) {return};
	$('payWithGiftVoucher').addEvent('click', function(e) {
	
		e = new Event(e).stop();
		
		TB_show('',selectGiftVoucherURL+payWithGiftVoucherDimensions,'');
	});
}

function payWithPPTCard() {
	var $ = document.id;
	if (!$('payWithPPTCard')) {return};
	$('payWithPPTCard').addEvent('click', function(e) {
	
		e = new Event(e).stop();
		
		TB_show('',selectPPTCardURL+payWithPPTGiftCardDimensions,'');
	});
}

function redeemCard(url, formId)
{
	var $ = document.id;
	var updateCard = new Request.HTML({url:''+url, method: 'post', data: $(formId), update: $("TB_ajaxContent")});
	updateCard.send();
}

function updateSmoothBoxContent(url) {
	var $ = document.id;
	new Request.HTML({url:''+url, method: 'get',update: $("TB_ajaxContent")}).send();
}

window.addEvent('domready', function(){
	payWithGiftVoucher();
	payWithPPTCard();
});
