function show3rdPartyDisclosure( link, title) {

	var popup_div = document.getElementById("warning_popup");
	var wrapper_div = document.getElementById("wrapper_popup");
	// ** Set the disclosure statement
 	var Disclosure_Statement = "<li>By continuing to this link, you will be leaving the Lewis Clark Credit Union. <li>Links to other websites found on the Lewis Clark Credit Union site are intended to provide assistance in locating information. Lewis Clark Credit Union does not endorse, guarantee, or attest to the accuracy of any information provided by these other sites. <li>The credit union is not responsible for the content of these other sites and these sites are in no way operated by Lewis Clark Credit Union. <li>The privacy and security policies of these linked sites may vary from those of the credit union; therefore, it is advised that you review the privacy information of each site visited.";


	if (link.length > 0 ) {

		var DisplayTitle = "Continue" + (title.length > 0 ? " to " + title : "");

		Disclosure_Statement += "	<br> <br> ";
		Disclosure_Statement += "	<div align=\"center\"><a href=\"javascript:void('0');\" onclick=\"window.open('" + link + "');document.getElementById('wrapper_popup').style.display = 'none'\">" + DisplayTitle + "</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"javascript:void('0');\" onclick=\"document.getElementById('wrapper_popup').style.display = 'none';\">No Thanks</a></div> ";

		popup_div.innerHTML = Disclosure_Statement;

		wrapper_div.style.display = "block";

		scrollTo(0,0);
	}

}
document.write("<div id=\"wrapper_popup\" style=\"text-align:center;width:100%;display:none;\"><div id=\"warning_popup\"></div></div>");
