// JavaScript Document

function external_disclaimer(goHere){
	message  = "You are now leaving PointBank's website and will be redirected to another site. PointBank makes no endorsement or claims about the accuracy or content of the third party site to which you may be going. The security and privacy policies on these sites may be different from PointBank.";
	if (confirm(message)){
		window.open(goHere, '_blank');
	}
}

function calculator_disclaimer(goHere){
	message  = "You are now leaving PointBank's website and will be redirected to another site. PointBank makes no endorsement or claims about the accuracy or content of the third party site to which you may be going. The security and privacy policies on these sites may be different from PointBank.";
	if (confirm(message)){
		window.open(goHere, 'calculator','toolbar=no,width=720,height=520,scrollbars=yes'); return false;
	}
}
