// JavaScript Document
<!--
function agree(url) {
	var answer = confirm("By clicking OK below, I certify that I have read and agree to ALL the\nterms and conditions stated in the Electronic Funds Transfer (EFT)\nAgreement and Disclosure.\n\nClick OK if you agree to the above terms, otherwise click Cancel.")
	if (answer){
		window.open(url);
	}
	else{
	}
}
//-->
