﻿function showSpeedBump(newURL) {
  var resp = confirm("By clicking on the 'OK' button below, you will be leaving the CitiMortgage, Inc. website and entering a third party website.  CitiMortgage does not provide, control or endorse the products, services, or content on the third party site. Please review the privacy and security policies and terms and conditions for this site. Do you wish to continue?");
  if (resp) {
    //window.location = newURL;
    window.open (newURL);
  }
}