

$(document).ready(function($) {
	CartID = 's-7213';
	// Gift Card
	$('form#GiftC').submit(function(e) {
		if ($('#cName').val() == '') {
			e.preventDefault();
			alert('Please provide the name of the person who will redeem this voucher.');
		}
		tokens = $('#Cop2').val().split('^');
		sfName = tokens[0];
		prodName = tokens[1]+' (For: '+$('#cName').val()+')';
		price = tokens[2];
		itemValue = CartID+'^=elec==SF='+sfName+'^'+prodName+'^'+price+'^1';
		
		$('#ItemC').val( itemValue );
		//alert(itemValue);	e.preventDefault();
	});
	
	// Gift Voucher
	$('form#GiftV').submit(function(e) {
		if ($('#vName').val() == '') {
			alert('Please provide the name of the person who will redeem this voucher.');
			e.preventDefault();
		}
		sfName = 'voucher' + $('#Vop2').val().replace('$','').replace('.00','');
		prodName = 'Gift Voucher (for: '+ $('#vName').val() +')';
		price = $('#Vop2').val(); //.replace('$','').replace('.00','');
		itemValue = CartID+'^=elec==SF='+sfName+'^'+prodName+'^'+price+'^1';
		
		$('#ItemV').val( itemValue );
		//alert(itemValue);	e.preventDefault();
	});
});

