
function confirmLeave(url)
{
	var newUrl = url;
	if (confirm("You are about to leave countyfcu.org and enter a linked site.  This link is provided for your convenience and should not be considered as an endorsement of the products, services or information provided, or an assurance of the security provided at the linked site.  Would you like to continue?")) {
		window.location.href = newUrl;
	}
}

function check()
{
	if (confirm('You are about to leave countyfcu.org and enter a linked site.  This link is provided for your convenience and should not be considered as an endorsement of the products, services or information provided, or an assurance of the security provided at the linked site.  Would you like to continue?'))
	{
		return true;
	}
	else return false;
}

