// modules.txt // input file to mainMenu function // data is used to display menu options in the main menu, removing items from this array will // make the corresponding menu option in the demo hidden. // Welcome Menu = 'welcome' // Statements = 'statements' // Account Reporting = 'account' // Funds Transfer = 'funds' // Express Transfer = 'express' // Enhanced Bill Pay = 'billpay' // Bill Payment = 'bill' // Bill Setup = 'billsetup' // Book Transfer = 'book' // Enhanced ACH = 'ach' // File Upload = 'fileup' // File Download = 'filedown' // Wire = 'wiremain' // Incoming Wire Report = 'inwirerpt' // Positive Pay = 'opositive' // Enhanced Positive Pay = 'positive' // Stop Payment = 'stop' //CD Account = 'cdaccount' //Investment Account = 'investmentaccount' // Enhanced Loan = 'loan' // Customer Support = 'custsupport' // Administration = 'admin' // Reporting = 'reporting' // Credit Card Reports = 'cardrpt' // Credit Card Payments = 'cardpay' // Full Account Recon = 'fullrecon' // Partial Acct Recon = 'partrecon' // Deposit Acct Recon = 'deprecon' // Check Reorder = 'chkreorder' // Quickbooks = 'quickbooks' // Quicken = 'quicken' // MSMoney = 'msmoney' // Remote Deposit Capture = 'capturerdc' //Schedule Requests = 'schedule' record1 = ["welcome","reporting","quickbooks","quicken","msmoney","statements","express","funds","loan","billpay","wiremain","stop","admin","custsupport","schedule"] // input file to subMenu function for Loan // data is used to display menu options in the Loan sub-menu, removing items from this array will // make the corresponding Loan option in the demo hidden. // Summary Report = 'summary' // Activity Report = 'activity' // History Report = 'history' // Payment Request = 'payment' // Advance Request = 'advance' // Transmit = 'transmit' record2 = ["summary","activity","history","payment","advance","transmit"] // input file to subMenu function for Wire // data is used to display menu options in the Wire sub-menu, removing items from this array will // make the corresponding Wire option in the demo hidden. // Repetitive Wire Entry = 'repetitive' // Freeform Wire Entry = 'freeform' // Wire History = 'history' // Transmit Wire = 'transmit' // Wire Template Setup = 'setup' record3 = ["repetitive","freeform","history","transmit","setup"] // input file to subMenu function for ACH // data is used to display menu options in the ACH sub-menu, removing items from this array will // make the corresponding ACH option in the demo hidden. // ACH Payment = 'payment' // ACH Collection = 'collection' // Federal Tax = 'federal' // State Tax = 'state' // Child Support Payent = 'child' // STP 820 Payment = 'stp820' // Corporate Trade Exchange = 'ctx' // ACH Transmit = 'transmit' // ACH History = 'history' // ACH File Upload = 'upload' record4 = ["payment","collection","federal","state","child","stp820","ctx","transmit","history","upload"]