// 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' // Positive Pay = 'opositive' // Enhanced Positive Pay = 'positive' // Stop Payment = 'stop' // 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' record1 = ["welcome","account","reporting","filedown","express","book","loan","ach","bill","billsetup","fileup","wiremain","stop","admin","custsupport"] // 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' // Wire Setup = 'setup' // Transmit Wire = 'transmit' // Incoming Wire Report = 'incoming' record3 = ["repetitive","freeform","history","setup","transmit"] // 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' // ACH Transmit = 'transmit' // ACH History = 'history' // ACH File Upload = 'upload' record4 = ["payment","collection","federal","state","transmit","history","upload"]