$(document).ready(function() {

$("#treatment-options-link-what, #treatment-options-link, .outside-link").click(function(event) {

        var answer = confirm("Please note: you are about to leave the LearnAboutLowT site\n\nClick \"OK\" to proceed to the product Web site or \"Cancel\" to return to learnaboutlowt.com.");
        if (answer == true) {
            return true;
        }
        else {

            event.preventDefault();

        }

    });
});