// JavaScript Document for Aliance.jsp


var resellers = 'uMonitor Resellers';
var resellersList = ["Open Solutions Inc","FIS","Fiserv"];
var resellersDescription = 'uMonitor service resellers are industry leaders. These financial industry leading technology providers have identified uMonitor solutions as a valuable addition to their comprehensive service offerings. This helps them meet growing demands for new services from their bank and credit union clients.';

var partners = 'Sales Alliance Partner';
var partnersList = ['ACI Worldwide','Authorize.Net','Bank Administrative Institute (BAI)','Change Sciences Group','Computime (a partner for Topaz Systems)','Equifax','Experian','First Data','BANKDetect','Haberfeld Associates','Independent Community Banker of America (ICBA)','LexisNexis','Missourt Credit Union Association','MoneyAisle.com','NCR Corporation','T8 Webware','Teres Solutions','TransUnion','Western Independent Bankers','Wolters Kluwer'];
var partnersDescription = 'uMonitor has developed strategic partnerships with many leading companies and organizations in the financial services industry.  These strategic referral partnerships include technology providers, transaction processors, regional bank and credit union organizations, website development and consulting companies.';

var alliance = 'Technology Alliance Partner';
var allianceList = [
						"Harland Clarke Corp",
						"Computer Sciences Corporation (CSC)",
						"Computer Services, Inc. (CSI)",
						"CUNA Mutual Group",
						"Deluxe Corporation",
						"Digital Insight (an Intuit Company)",
						"Financial Fusion, Inc.",
						"Google Checkout",
						"Jack Henry & Associates, Inc.",
						"Online Resources",
						"Paypal",
						"Q2ebanking, Inc.",
						"S1 Corporation",
						"Symitar"
					];
var allianceDescription = "uMonitor works with many technology leaders beyond our Sales Partners and Resellers to meet our clients' multi-platform integration requirements. Our technology partners include system providers for core processing, internet banking, compliance and risk management, check ordering, loan processing, signature capture, card scanning, document imagining, and other services.";

function showDetails(selectitem){	
	document.getElementById('detailDesc').style.display = 'none';
	document.getElementById('allianceDescription').innerHTML = '';
	if(selectitem != ''){		
		if(selectitem == 'resellers'){			
			document.getElementById('allianceDescription').innerHTML = loadDescription(resellers, resellersDescription, resellersList);
			document.getElementById('detailDesc').style.display = '';
		}else if(selectitem == 'partners'){
			
			document.getElementById('allianceDescription').innerHTML = loadDescription(partners, partnersDescription, partnersList);
			document.getElementById('detailDesc').style.display = '';
		}else if(selectitem == 'alliance'){
			
			document.getElementById('allianceDescription').innerHTML = loadDescription(alliance, allianceDescription, allianceList);
			document.getElementById('detailDesc').style.display = '';
		}
	}
}

function loadDescription(subCatHeading, subCatDescription, subCatList){
	var HTMLString = "";
	var heading = "<h3>" + subCatHeading + "</h3>";
	var description = "<p>" + subCatDescription + "</p>";
	var liTag = "";
	for(var i = 0; i< subCatList.length; i++){
		liTag = liTag + "<li>" + subCatList[i] + "</li>";
	}
	var ClientList = "<ul class='box'>" + liTag + "</ul>";
	
	HTMLString = heading + description + ClientList;
	return HTMLString;
}
