window.addEvent('load',function(){Vouchers.setup()});
var fieldStart = "ctl00_Content_";

var Vouchers = {
	setup: function()
	{
		$$('#vouchervalues a').addEvent('click',function(e){e = new Event(e); e.stop(); $(fieldStart + 'voucheramount').value = e.target.rel; $(fieldStart + 'voucheramount').focus()});
			
	}
	}


