function LeavingSite(url)
{
	if(confirm("Notice:  You are leaving the Eastern National Bank website, the bank is not responsible or liable for the content, information or security; the failure of any products or services advertised or promoted on this linked site and any issues that may arise out of the site's privacy policy\n" +
		   		"Press OK to continue.\n" +
				"Press CANCEL to return to the web page.\n\n" +
                                "Thank You.\n" +
				"")) {
	window.open(url, "_blank");
	}
	
}

