function mailConfirm(passedAddress) {
	if (confirm("Messages sent to Phelps County Bank via standard E-mail are sent over the Internet and are not transmitted in an encrypted or secure form.  Please do not send or ask for confidential information (social security numbers, account numbers, etc) via standard E-mail.  Alternatively, please use our secure E-mail system at https://web1.zixmail.net/s/login?b=phelpscountybank."))
		window.location = passedAddress;
}
function disclaimer(passedWebsite) {
	if(confirm('You are leaving the Phelps County Bank website and going to a third party site. We encourage you to read the privacy policies of each and every website you visit, as the privacy policies of those sites may differ from ours, even though the Phelps County Bank name or logo may appear on that site. Phelps County Bank is not responsible for the products, services, and content on the third party website.'))
		window.open(passedWebsite,'NewWin','toolbar,status,resizable,location,scrollbars,menubar')
}
