  var emailDisclaimer = "Email disclaimer goes here.";
  
  var linkDisclaimer = "You are leaving the UniWyo Federal Credit Union Website.  Please be advised that UniWyo FCU makes no endorsements or recommendations about the content on the website you are linking to, and UniWyo FCU further disclaims any responsibility for actions or transactions on that site.  Please be aware that the privacy policy of the linked website is not that of UniWyo Federal Credit Union";
  
  function mailConfirm(passedAddress) {
    if (confirm(emailDisclaimer)) {
                window.location.href = passedAddress;
    }
  }
  
  function linkConfirm(passedWebsite) {
    var oWin;
    if (confirm(linkDisclaimer)) {
      oWin = window.open(passedWebsite);
      if (oWin === null || typeof(oWin) === "undefined") {
        window.location.href = passedWebsite;
      } else {
        return true;
      }
    }
  }
