def getVoidables():
        response = btc.getRequestResponseXML(BTF_VOIDABLES)
	transList = btrp.parseTransactionsXML(response)			
	return transList
def getDeposits():
        response = btc.getRequestResponseXML(BTF_DEPOSITS)
	transList = btrp.parseTransactionsXML(response)			
	return transList
def getCustomersByBTFID(dlrID):
    response = btc.getRequestResponseXML(BTF_CUSTOMER_BY_BTF_NUM + dlrID)
    customerList = btrp.parseCustomersXML(response)
    return customerList
def getAllCustomers():
    response = btc.getRequestResponseXML(BTF_CUSTOMER)
    customerList = btrp.parseCustomersXML(response)
    return customerList
def getCustomersByName(companyName):
    response = btc.getRequestResponseXML(BTF_CUSTOMER_BY_NAME + companyName)
    customerList = btrp.parseCustomersXML(response)
    return customerList