﻿$(document).ready(function () {
    $("a").click(function (event) {
        if ((this.toString().toLowerCase().indexOf('http') >= 0) && (this.toString().toLowerCase().indexOf('greycanada') == -1) && (this.toString().toLowerCase().indexOf('depressionhurts') == -1) && (this.toString().toLowerCase().indexOf('ladepressionfaitmal') == -1)) {
            event.preventDefault();
            interceptExit(this);
            return false;
        }
        else {
            return true;
        }

    });
});


function interceptExit(exiturl) {
    var currenturl = location.pathname;
    
    if (currenturl.toLowerCase().indexOf('/en/') >= 0) {
        showLeavingModal_en(exiturl);
    }
    if (currenturl.toLowerCase().indexOf('/fr/') >= 0) {
        showLeavingModal_fr(exiturl);
    }
}

function showLeavingModal_en(exiturl) {
    var popupHTML = "<div style='width:350px; height:100px; padding-top:20px;'>Please note you have clicked a link which will take you to a web site which is not part of DepressionHurts.ca<br/><br/><a href='" + exiturl + "' target='_blank' onclick='$.fn.colorbox.close();'>Proceed</a>&nbsp;&nbsp;<a href=''>Cancel</a></div>";
    $('a:first').colorbox({ open: true, html: popupHTML, close: "CLOSE" });
}

function showLeavingModal_fr(exiturl) {
    var popupHTML = "<div style='width:350px; height:100px; padding-top:20px;'>Veuillez noter que vous avez cliqué sur un lien qui vous dirigera vers un site Web qui ne fait pas partie de ladepressionfaitmal.ca.<br/><br/><a href='" + exiturl + "' target='_blank' onclick='$.fn.colorbox.close();'>Continuer</a>&nbsp;&nbsp;<a href=''>Annuler</a></div>";
    $('a:first').colorbox({ open: true, html: popupHTML, close:"FERMER" });

}
