function displayExitWarning()
{
	var warningMessage = 'You have requested a document that is external to Timberland Bank\'s website.  Links to third party websites'
	warningMessage +=' are provided as a convenience and do not constitute an endorsement by Timberland Bank, its employees,'
	warningMessage +=' the sponsors of the site, or the products presented on the site.  Timberland Bank cannot attest to the accuracy of information provided by a linked site.'
	warningMessage +=' We encourage you to evaluate the privacy and security of the third party\'s website for yourself before you proceed.';
	
	return confirm(warningMessage);
}

function isReturn(e)
{
    var keyNum;
    if(e.keyCode)
    {
        keyNum = e.keyCode;
    }
    else
    {
        keyNum = e.which
    }
    var keyChar = String.fromCharCode(keyNum);
    var regex = /\r/
        
    return regex.test(keyChar)
}