
/* =Disclaimers
----------------------------------------------- */
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. For your protection, please do not send any personal information (i.e. Social Security Number, account number, date of birth, etc.) We cannot address account related or personal information through non-secure email.")) {
		window.location.href = passedAddress;
	}
}

function disclaimer(passedWebsite) {
	var oWin;
	if (confirm("Sweet Water State Bank has no control over information at any site hyperlinked to or from this Site. Sweet Water State Bank makes no representation concerning and is not responsible for the quality, content, nature, or reliability of any hyperlinked site and is providing this hyperlink to you only as a convenience. The inclusion of any hyperlink does not imply any endorsement, investigation, verification or monitoring by Sweet Water State Bank of any information in any hyperlinked site. In no event shall Sweet Water State Bank be responsible for your use of a hyperlinked site. Some browser pop-up blockers will prevent the new window from opening. Please disable your pop-up blocker before clicking 'Continue'.")) {
		oWin = window.open(passedWebsite,"newWindow");
		if (oWin === null || typeof(oWin) === "undefined") {
			window.location.href = passedWebsite;
		} else {
			return true;
		}
	}
}
