//third party popup

function showWarning(url,target){
var target = target || "";
var content = new Array();
var index = 0;
content[index++] = "<h2>Entering Third Party Site</h2>By accessing this link you will be leaving Evolve Bank &amp; Trust's website and entering a website hosted by another party. Please be advised that you will no longer be subject to, or under the protection of, the privacy and security policies of Evolve Bank &amp; Trust's website. We encourage you to read and evaluate the privacy and security policies of the site you are entering, which may be different than those of Evolve Bank &amp; Trust.";
content[index++] = "<br /><br />";
content[index++] = "<div align=\"center\"><a href=\""+url+"\" target=\""+target+"\" onclick=\"document.getElementById('ex_dis').style.display = 'none';document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'\" class=\'body'\">Continue</a> | <a href=\"javascript:void('0');\" onclick=\"document.getElementById('ex_dis').style.display = 'none';document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'\" class=\'body'\">Decline</a></div></div>";  
document.getElementById("ex_dis").innerHTML = content.join("");
document.getElementById("ex_dis").style.display = "block";
scrollTo(0, 0);
}

document.write('<div id="ex_dis" style="background-color: #ffffff; font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-weight: normal; color: #000000; text-align: center; position:absolute; top:25%; left:38%; border: 5px solid #002d62; padding: 15px; display: none; width:350px; z-index: 55"></div>');

//end third party popup
