function confirm_window(link){
  var confirm_text = 'Links to other websites have been provided soley as a' + 
  ' member convenience. The Credit union is unable to control the content of' +
  ' these sites and assumes no liability for the content or accuracy';
  if(window.confirm(confirm_text)){
    window.open(link);
  }
}

