function externallink()
{
	var message;
	
	message = "IMPORTANT NOTICE" +
			"\n\nYou are leaving Bank of Fall River's website. Please note that by clicking on the \"OK\"" +
			"\nbelow, you will enter a privately owned website created, operated and maintained by a " +
			"\nprivate business or organization. " +
			"\n\nBank of Fall River takes no responsibility for any products or services offered by " +
			"\nthis site, nor do we endorse or sponsor the information it contains. Deposit products " +
			"\nthat may be described in any other website are not covered by Bank of Fall River's FDIC " +
			"\nand SIF insurance. Bank of Fall River's privacy policy does not apply to any other website " +
			"\nyou visit. We recommend you review that website's privacy policy. " +
			"\n\nInternet sites change location frequently. Bank of Fall River is not responsible for the " +
			"\naccessibility of this link.";
	if (confirm(message))
	{
		return true;
	}
	else
	{
		return false;
	}
}