// JavaScript Document
<!--
function confirmation(url) {
	var answer = confirm("Mt. Rainier FCU is offering this link for your convenience. This link will take you away from our site. Mt. Rainier FCU is not endorsing or guaranteeing the products, information, or recommendations provided by the linked site.  Mt. Rainier FCU is not liable for any failure of products or services advertised on that site. Mt. Rainier FCU does not represent either the third party or our member if the two enter into a transaction. The third partys privacy and security policies may differ from those of the Credit Union. \n\nDo you want to continue?")
	if (answer){
		window.open(url);
	}
	else{
	}
}
//-->