function disclaim() {
  var theResult = true;
  var alertResponse =
  confirm("PLEASE NOTE: You are about to leave the International Bank of Chicago Website.  \n \nInternational Bank of Chicago is not responsible for, nor do we control, endorse or guarantee the content, products and/or services of the subsequent pages. The linked site may have a different privacy policy or provide less security than our Web site. \n \nWe recommend you review these policies on the linked site. \n \nThank you!");
  if (alertResponse) {
    if (window.event) event.returnValue = true;
    theResult = true;
  }
  else {
    if (window.event) event.returnValue = false;
    theResult = false;
  }

  return theResult;
}










