function element(obj) {
	return document.getElementById(obj);
}

function servicestoggleBox(obj1,obj2) {
	if(element(obj1).style.display == "" || element(obj1).style.display == "none") {
		element(obj1).style.display = "block";
		element(obj2).style.backgroundColor = "#0A4160";
		element(obj2).style.color = "#fff";
	} else {
		element(obj1).style.display = "none";
		element(obj2).style.backgroundColor = "#D4D3D3";
		element(obj2).style.color = "#226186";
	}
}

function offsiteLink(url) {
	alert('Please note that the credit union is not liable for the content, reliability, or availability of any linked site.  Links are provided for your convenience only.');
	window.open(url);
}