// JavaScript Document

function add_onclick_disclaimer() {
  if (!document.getElementsByTagName) return false;
  var links = document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("external")) {
      links[i].onclick = function() {
        return confirm("You have clicked on a hyperlink to access "+this.href+".\n\nOzark Bank does not exercise editorial control at "+this.href+" or any other external web site.  The appearance of hyperlinks to this or any other web site does not constitute endorsement by or affiliation with Ozark Bank.\n\nClick OK if you wish to continue.");
      }
    }
  }
}
window.onload = window.onload=function(){
  add_onclick_disclaimer();
}