// JavaScript Document
function exLink(theURL,winName)
{
	if(confirm('You are now leaving NHCCU\'s website. When you click on OK you will be transferred to a website that is not operated by the credit union. NHCCU is not responsible for the content on the alternate site. NHCCU does not represent the third party or the member if the two enter into a transaction. Privacy and security policies of the alternate site may differ from those practiced by the credit union.\nDo you wish to continue?'))
	{
		window.open(theURL,winName,'toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes');
	}
}