// JavaScript Document
function exLink(theURL,winName)
{
	if(confirm('You are now leaving GRBFCU\'s website and visiting a company with privacy policies, technologies and information that are unique to them and seperate from GRBFCU.\nDo you wish to continue?'))
	{
		window.open(theURL,winName,'toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes');
	}
}