/*
 * Maple Cash form data							 MD (09/2)
 *    (c) Max Díaz 2009
 *    www.maxdiaz.com
 */


// Customer loan amounts
var custLoan = ["100", "120", "140", "160", "180", "200", "220", "240", "260", "280",
				"300", "320", "340", "360", "380", "400", "420", "440", "460", "480", "500"];
// New appl amounts
var newLoan = ["100", "120", "140", "160", "180", "200"];

// Bank list
var banks = [
	 "001 Bank of Montreal",
	 "002 Bank of Nova Scotia",
	 "003 Royal Bank",
	 "004 Toronto Dominion",
	 "006 National Bank of Canada",
	 "010 CIBC",
	 "016 HSBC",
	 "030 Canadian Western Bank",
	 "039 Laurentian Bank of Canada",
	 "169 International Commercial Bank of Cathay",
	 "177 Bank of Canada",
	 "219 Alberta Treasury Branches",
	 "220 B.C. Community Financial Services Corp.",
	 "239 Desjardin Credit Union",
	 "240 ABN AMRO Bank Canada",
	 "241 Bank of America",
	 "243 Bank Canada",
	 "245 Bank of Tokio-Mitsubishi",
	 "249 Banca Commerciale Italiana of Canada",
	 "250 BMP Paribas",
	 "260 City Bank Canada",
	 "275 Korea Exchange Bank of Canada",
	 "277 Mizuho Bank",
	 "281 J.P. Morgan",
	 "286 National Bank of Greece",
	 "290 UBS Bank",
	 "294 State Bank of India",
	 "301 Sumitomo Mitsui Banking Corp. of Canada",
	 "302 United Overseas Bank",
	 "303 Amex Bank of Canada",
	 "305 Sottomayor Bank Canada",
	 "307 Bank of East Asia",
	 "308 Bank of China",
	 "309 Citizens Bank of Canada",
	 "310 First National Bank of Canada",
	 "311 MBNA Canada Bank",
	 "312 Rabobank Canada",
	 "313 Comerica Bank Canada",
	 "314 Chase Manhattan Bank of Canada",
	 "315 CTC Bank of Canada",
	 "321 Habib Canadian Bank",
	 "326 President Choice Financial",
	 "509 Canada Trust Company",
	 "540 Manulife Bank of Canada",
	 "548 CIBC Trust Corporation",
	 "550 Montreal Trust Company of Canada",
	 "554 Citizen Trust Company",
	 "557 Promutuel Capital Trust Comapany",
	 "560 AGF Trust Company",
	 "568 Peace Hills Trust Company",
	 "590 National Trust Company",
	 "591 Canada Trustco Mortgage Company",
	 "608 Alterna Bank",
	 "612 Natcan Trust Company",
	 "614 ING Bank of Canada",
	 "618 B2B Trust",
	 "619 M.R.S. Trust Company",
	 "803 Latvian Credit Union Limited",
	 "804 Fire Department Employees Credit Union",
	 "806 DUCA Financial Services Credit Union",
	 "807 Communication Technologies Cedit Union",
	 "809 Credit Union Central of British Columbia",
	 "810 All Trans Credit Union Limited",
	 "812 North York Community Credit Union Ltd.",
	 "813 Credit Union Central of Prince Edward",
	 "815 Fed. de Caisses Desjardins du Quebec",
	 "819 Fed. de Caisses Populaires de Manitoba",
	 "828 Credit Union Central of Ontario Limited",
	 "829 Fed. de Caisses Populaires de l\'Ontario",
	 "830 Airline (Malton) Credit Union Limited",
	 "831 Caisse Populaire Shippagan",
	 "833 Stanislaus/Casimirs Polish Parishes Credit",
	 "834 Ascu Community Credit Union",
	 "839 Credit Union Central of Nova Scotia",
	 "840 Dundalk District Credit Union Limited",
	 "842 Civil Service Co-operative Credit Soc.",
	 "844 Goderich Community Credit Union",
	 "846 Ontario Civil Service Credit Union",
	 "848 C.B.C.(Toronto) Credit Union",
	 "849 Brunswick Credit Union Federation",
	 "850 Polysar Lambton Credit Union",
	 "865 Fed. des Caisses Populaires Acadiennes",
	 "869 Credit Union Central Of Canada",
	 "879 Astra Credit Union",
	 "889 Credit Union Central of Saskatchewan",
	 "890 Alliance des Caisses Populaires de l\'Ontario",
	 "899 Bassano Credit Union"
];

var refers = ["Google", "Yahoo", "MSN", "Internet search", "Word of mouth", "Other"];

var freqs = ["Weekly", "Biweekly", "Twice a month", "Monthly"];

var provs = ["Alberta", "British Columbia", "Manitoba", "New Brunswick", "Newfoundland", "NW Territories",
			 "Nova Scotia", "Nunavut", "Ontario", "Prince Edward", "Quebec", "Saskatchewan", "Yukon"];



//////////////////////////////////////////////////////////////////////////////////////

function makCustLoan() {
	makOpts(true, custLoan);
}

function makNewLoan() {
	makOpts(true, newLoan);
}

function makBanks() {
	makOpts(true, banks);
}

function makProv() {
	makOpts(true, provs);
}

function makRefers() {
	makOpts(true, refers);
}

function makFreqs() {
	makOpts(true, freqs);
}
