function mailConfirm(passedAddress) {
	if (confirm("You are about to send information over the Internet that may not be transmitted in an encrypted or secure form. It might be possible for others to see what you are sending, therefore, you should assume that this email is not secure. For your protection, please do not send any personal information (i.e., Social Security Number, Account Number, Date of Birth, PIN Number, etc.)."))
		window.location = passedAddress;
}

function disclaimer(passedWebsite) {
	if(confirm('You are leaving the Lewis & Clark Bank website.  Lewis & Clark Bank does not control or manage the products or services or the website content, privacy or security policies of these third parties.  We recommend that you review the products or services and the privacy and security policies of these third party websites.  Thank you for visiting Lewis & Clark Bank.'))
		window.open(passedWebsite,'NewWin','toolbar,status,resizable,location,scrollbars,menubar')
}

