// JavaScript Document

function LinkAlert(URL)
	{
	BankName = "South Louisiana Business 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 + ".      \n\nAs of May 20, 2009, deposits at FDIC-insured institutions are now insured up to at least $250,000 per depositor through December 31, 2013. ON January 1, 2014, the standard insurance amount will return to $100,000 per depositor for all account categories except for IRAs and certain retirement accounts which will remain at $250,000. \n\nSouth Louisiana Business Bank has chosen not to participate in the FDIC's Transaction Account Guarantee Program (TARP). Customers of South Louisiana Business Bank with interest bearing or noninterest-bearing transaction accounts will continue to be insure through December 31, 2013 for up to $250,000 under the FDIC's general deposit insurance rules.";
	if (URL!=undefined) 
		{
		if (confirm(MSG)) window.open(URL,"_blank");
		}
	else return confirm(MSG);
	}
	
  function LinkAlert2(URL)
  	{
  	MSG =       "The security and privacy of your information is very important to us. If you choose to communicate with us via email, please be aware that email is not secure therefore, do not email any personal or banking information of a confidential nature. If you need to send us confidential information (Account numbers, Balances, Social Security Number, Address, etc.), please call us at 225-677-7004 during normal banking hours. Thanks.";
  	if (URL!=undefined) 
  		{
  		if (confirm(MSG)) window.open(URL,"_blank");
  		}
  	else return confirm(MSG);
  	}