function mailConfirm(passedAddress)
{
	if (confirm("NOTICE: This electronic mail message and any files transmitted with it are intended exclusively for the individual or entity to which it is addressed.\r\rThe message, together with any attachment, may contain confidential and/or privileged information. Any unauthorized review, use, printing, saving, copying, disclosure or distribution is strictly prohibited. If you have received this message in error, please immediately advise the sender by reply email and delete all copies."))
	{
		window.location = passedAddress;
	}
}

function disclaimer(passedWebsite)
{
	if(confirm('You are leaving Basin State Bank\'s website.\r\rThis site you have chosen is independent from http://basinstatebank.com. Please be advised that Basin State Bank makes no endorsements or recommendations of the web site or its content and disclaims any responsibility for actions or transactions on the site. Basin State Bank does not guarantee the accuracy, completeness, efficiency, or timeliness of the information contained therein.'))
	{
		window.open(passedWebsite,'NewWin','toolbar,status,resizable,location,scrollbars,menubar')
	}
}