function setTotal( total) {
	document.getElementById( 'grandTotal').innerHTML = total;
}
function voucherCheck( o) {
	$.get( '/ajax/VoucherPage/isValid/'+o.value, voucherCheckClb);
}
function voucherCheckClb( msg) {
	if (!msg) {
		return( false);
	}
	if (msg == '1') {
		return( $('#voucherResult').html( '<img src="/img/accept.png" />'));
	}
	return( $('#voucherResult').html( msg));
}