/*	----------< MY PAGES >------------------------------------------------------------------------------------------------ */
function SendVoucherViaEmail (customerID, bookingID) {
	$('#sendVoucher_loader').show();
	Zeus.Odin.DisillModules.API.OdinAPI.SendVoucher(customerID, bookingID, function(r) {
		$('#sendVoucher_loader').hide();
		if (r.Success) {
		    alert('Staðfestingin var send');
		} else {
			alert(r.ErrorMessage);
		}
	}, Error);
}
function SendInvoiceViaEmail (customerID, bookingID) {
	$('#sendInvoice_loader').show();
	Zeus.Odin.DisillModules.API.OdinAPI.SendInvoice(customerID, bookingID, function(r) {
		$('#sendInvoice_loader').hide();
		if (r.Success) {
		    alert('Reikningurinn var sendur');
		} else {
			alert(r.ErrorMessage);
		}
	}, Error);
}
function SendAmadeusTicketsViaEmail (customerID, bookingID) {
	$('#sendAmadeus_loader').show();
	Zeus.Odin.DisillModules.API.OdinAPI.SendAmadeusTickets(customerID, bookingID, function(r) {
		$('#sendAmadeus_loader').hide();
		if (r.Success) {
		    alert('Miðinn var sendur');
		} else {
			alert(r.ErrorMessage);
		}
	}, Error);
}
