//function for popping up disclaimer when going to an external site
function DisclaimerMsg(URL)
	{
		var strMsg;
		strMsg = 'With regard to information, services or products purchased or obtained by the user from a non-Raymond James Bank, person or entity, Raymond James Bank, makes no warranty of merchantability or fitness for a particular purpose with regard to such information, services and products and Raymond James Bank, specifically disclaims all other warranties with regard to said information, services and products.';
		
		if (confirm(strMsg))
		{
			window.location = URL
		}
	}

function DisclaimerMsgNewWin(URL)
	{
		var strMsg;
		strMsg = 'With regard to information, services or products purchased or obtained by the user from a non-Raymond James Bank, person or entity, Raymond James Bank, makes no warranty of merchantability or fitness for a particular purpose with regard to such information, services and products and Raymond James Bank, specifically disclaims all other warranties with regard to said information, services and products.';
		
		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 DisclaimerMsgNewWinPost()
	{
		var strMsg;
		strMsg = 'With regard to information, services or products purchased or obtained by the user from a non-Raymond James Bank, person or entity, Raymond James Bank, makes no warranty of merchantability or fitness for a particular purpose with regard to such information, services and products and Raymond James Bank, specifically disclaims all other warranties with regard to said information, services and products.';
		
		if (confirm(strMsg))
		{
			return true;
		}
		else
		{
			return false;
		}
	}

//-->

