﻿var defaultContactCost = 52;
var defaultCustomers = 75000;
var costMatrix = new Array();

// each array item added should be of the form
// new Array(itemId on form, screeningCost, percentage, defaultNegativeToZero, selectedFlag - always set to zero)
costMatrix[1] = new Array('paf', 0.0045, 0.09, 0, 0);             //PAF
costMatrix[2] = new Array('teleappend', 0.04, 0.29, 0, 0);       //TeleAppend
costMatrix[3] = new Array('mps', 0.005, 0.0364, 0, 0);             //MPS
costMatrix[4] = new Array('tps', 0.005, 0.11, 0, 0);             //TPS
costMatrix[5] = new Array('goneaways', 0.01388, 0.0347, 0, 0);       //GoneAways
costMatrix[6] = new Array('fps', 0.005, 0.0003, 0, 0);              //FPS
costMatrix[7] = new Array('deceased', 0.0036, 0.006, 0, 0);        //Deceased
costMatrix[8] = new Array('ncoa', 0.010925, 0.0437, 0, 0);            //NCOA
costMatrix[9] = new Array('dedupe', 0.006, 0.03, 0, 0);            //Dedupe


