// initialize external link alert

jQuery(document).ready(function($)
{
	$('a[href*="mailto"]').not('a.noAlert').click(function ()
	{ 
		var x=window.confirm('Security Disclosure: Email sent using any of the addresses listed in this site are not encrypted. Do not include any non-public personal information such as account numbers or social security numbers in your email.');
		var val = false;
		if (x)
		{
			val = true;
		}
		else
		{
			val = false;
		}
		
		return val;
	});
});
