function LeavingFNB(new_url)
	{
		var strMessage;
		strMessage = 'You have clicked on an external link and are leaving the First National Bank website.  Linked web pages are not under the control of First National Bank, its affiliates or subsidiaries.  First National Bank provides such links as a convenience and is not responsible for the content or security of any linked web page.';
		
		if (confirm(strMessage))
		{
			window.open(new_url,"newwin");
		}					
	}
function LeavingFNBb(new_url)
	{
		var strMessage;
		strMessage = 'You have clicked on an external link and are leaving the First National Bank website.  Linked web pages are not under the control of First National Bank, its affiliates or subsidiaries.  First National Bank provides such links as a convenience and is not responsible for the content or security of any linked web page.';
		
		if (confirm(strMessage))
		{
			location.href=new_url;
		}					
	}
