//function for popping up disclaimer when sending an email
function MailDisclaimerMsg(URL)
	{
		var strMsg;
		strMsg = 'IMPORTANT: Email is not a secure method of communication. Please do not use email to send Raymond James Bank confidential or sensitive information such as passwords, account numbers or social security numbers. If you need to provide this type of information, contact RJBank by phone, fax, courier or regular mail.';
		
		if (confirm(strMsg))
		{
			window.location = URL
		}
	}

function MailDisclaimerMsgNewWin(URL)
	{
		var strMsg;
		strMsg = 'IMPORTANT: Email is not a secure method of communication. Please do not use email to send Raymond James Bank confidential or sensitive information such as passwords, account numbers or social security numbers. If you need to provide this type of information, contact RJBank by phone, fax, courier or regular mail.';
		
		if (confirm(strMsg))
		{
			window.open(URL,"newwin","scrollbars=yes, toolbar=yes, directories=no, menubar=yes, resizable=yes, status=yes, top=0, left=0, width=700, height=500");
		}
	}

function MailDisclaimerMsgNewWinPost()
	{
		var strMsg;
		strMsg = 'IMPORTANT: Email is not a secure method of communication. Please do not use email to send Raymond James Bank confidential or sensitive information such as passwords, account numbers or social security numbers. If you need to provide this type of information, contact RJBank by phone, fax, courier or regular mail.';
		
		if (confirm(strMsg))
		{
			return true;
		}
		else
		{
			return false;
		}
	}

//-->

