// JavaScript Document

function LinkAlert(URL)
	{
	BankName = "First NBC Bank";
	MSG =       "You are leaving " + BankName + " website and will be redirected to another site. " + BankName + " makes no endorsements or claims about the accuracy or content of the information contained in these sites. The security and privacy policies on these sites may be different than those of " + BankName + ".";
	if (URL!=undefined) 
		{
		if (confirm(MSG)) window.open(URL,"_blank");
		}
	else return confirm(MSG);
	}

function LinkAlert2(URL)

	{
	MSG =       "Please be aware it is not safe to email any personal identification, account details, or sensitive personal information via email. If you need to communicate sensitive information do no use email. Please contact your customer representative for additional information.";

	if (URL!=undefined) 

		{

		if (confirm(MSG)) window.open(URL,"_blank");

		}

	else return confirm(MSG);

	}
