// JavaScript Document

function exit(url) 
{
	var is_sure=window.confirm
	("You are now leaving the Riverfork FCU website and are going to a website that is not operated by the credit union. Riverfork FCU is not responsible for the content or availability of linked sites. We take reasonable precautions to assure that any site you link to from our site respects your right to privacy; however, we cannot guarantee it.  The privacy and security policies of the site you are linking to may be different from the privacy and security policies of Riverfork FCU.");
	if (is_sure==true)
	{
	window.location=url;
	}

}

function caution(email) 
{
	var is_sure=window.confirm
	("*CAUTION: Electronic mail sent through the Internet is not secure and could be intercepted by a third party. For your protection, do not send identifying information such as account, Social Security, or card numbers via email to us or anybody else.");
	if (is_sure==true)
	{
	window.location=email;
	}

}
