$(function() {
SetAnchors();
});

function SetAnchors() {
    $("a[rel='external']").attr("target", "_blank");
}

function SetExternalLinks() {
    $(function() {
        $("a.externallink").click(function(e) {
            e.preventDefault();
            var message = "<p>You are leaving Emmaus Medical's website and Emmaus Medical does not endorse or update statements on the third-party website you are attempting to navigate to.</p>";
            message += "<p>Please <a onclick='$.modal.close();' href='" + $(this).attr('href') + "' target='_blank'>click to continue</a>.</p>";
            $(message).modal({ maxHeight: 50, maxWidth: 100 });
        });
    });
}
