function mailConfirm(passedAddress)
{
	if (confirm('E-mail through this website is not secure. Please do not send or ask for confidential information (social security number, account number, PIN, etc) via email.'))
	{
		window.location = passedAddress;
	}
}

function disclaimer(passedWebsite)
{
	if(confirm('You are leaving Town & Country Bank\'s secure website and entering a linked website.  This link is provided for your convenience.  Town & Country Bank is not responsible for the content of these linked websites.  If you do not wish to leave Town & Country Bank\'s secure website, click cancel.'))
	{
		window.open(passedWebsite,'NewWin','toolbar,status,resizable,location,scrollbars,menubar')
	}
}