function showWarning(url){
var content = new Array();
var index = 0;
content[index++] = "<b style='font-family: Tahoma, sans-serif; font-size: 12px,'>DISCLAIMER NOTICE</b><br><p>By clicking on links within this web site, you will exit our web site. We make no representations nor do we assume any responsibility for the accuracy of information on other web sites in which you visit. PBK Bank does not endorse nor guarantee the products, information, or recommendations provided by the sites listed below and PBK Bank will not be held liable for any failure of products or services advertised on these sites.";
content[index++] = "<br /><br /><br />";
content[index++] = "<div align=\"center\"><a href=\"javascript:void('0');\" onclick=\"window.open('"+url+"');document.getElementById('disclaimerbox').style.visibility = 'hidden'\">Continue</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"javascript:void('0');\" onclick=\"document.getElementById('disclaimerbox').style.visibility = 'hidden'\">Decline</a></div></div>";	
document.getElementById("disclaimerbox").innerHTML = content.join("");
document.getElementById("disclaimerbox").style.visibility = "visible";
scrollTo(0, 0);
}

document.write('<div id="disclaimerbox" style="background-color: #FFFFFF; border:3px solid #00285b; font-family: Tahoma, sans-serif; font-size: 12px; font-weight: normal; color: #00285b; text-align: justify; position:absolute; top:390px; left:475px; padding: 16px; visibility: hidden;z-index: 3000; width:325px;"></div>');


