// properties.txt //Determine which file will be used for the logo logo = ["logo.jpg"]; //logo = ["logo.gif"]; //Determine which file will be used for the banner //banner = ["banner.jpg"]; banner = ["banner.gif"]; //Determine which files and captions will be used for the graphics on the landing page //Comment any graph and associated text if not desired //The graphs and text can be rearranged in the order desired //For instance, graph0 = ["main_graph_2.gif"] and text0 = ["NACHA"], etc. graph0 = ["main_graph_0.gif"]; text0 = [""]; graph1 = ["main_graph_1.gif"]; text1 = [""]; graph2 = ["main_graph_2.gif"]; text2 = [""]; graph3 = ["main_graph_3.gif"]; text3 = [""]; //Landing page content (modules_main.html) //Select if the demo will be a corporate demo or a small business demo. //Select if the demo will use the original loan service or the enhanced loan service //1. If you want to display the landing page for corporate version //uncomment accounttype = ["accountreporting"] //2. If you want to display the landing page for small business //uncomment accounttype = ["reporting"] //3. If you want to display the enhanced loan data on the landing page //uncomment loantype = ["enhancedloan"] accounttype = ["accountreporting"]; //configure landing page for corporation version //accounttype = ["reporting"]; //configure landing page for small business loantype = ["enhancedloan"]; //display loan data on landing page //loantype = ["loan"]; /////////////////////////////////////////////////// //SA Login //////////////////////////////////////// /////////////////////////////////////////////////// //Determine whether you want to display the SA enrollment pages or not. //1. If you do not want to display the SA enrollment screens uncomment the //first login option loginpage = ["../modules_main/modules_main.html"] //2. If you want to display the SA enrollment screens uncomment the //second login option loginpage = ["../signIn/sa_signup1.html"] loginpage = ["../modules_main/modules_main.html"]; //Do not View Enrollment in SA Pages //loginpage = ["../signIn/sa_signup1.html"]; //View Enrollment in SA Pages //Determine which password screen to use //1. If you want to display the SA active password screen on a registered computer //uncomment isreg = ["sa_active_reg.html"] //2. If you want to display the SA active password screen on a non registered computer //uncomment isreg = ["sa_active_nonreg.html"] //3. If you want to display the regular non SA password screen //uncomment isreg = ["signin_sa_password.html"] isreg = ["sa_active_reg.html"]; //SA on registered computer //isreg = ["sa_active_nonreg.html"]; //SA on non-registered computer //isreg = ["signin_sa_password.html"]; //SA off /////////////////////////////////////////////////// //End SA Login //////////////////////////////////// ///////////////////////////////////////////////////