$(document).ready(function() {
    $("a[href*='op=download']").bind("click", function() {
        $("#thankyou").css("visibility","visible");
        
        //http://www.docebo.com/doceboCms/index.php?mn=docs&op=download&pi=54_299&id=39
        document.getElementById("thank_iframe").src = 'http://www.docebo.com/doceboCms/urchinload.html?'
            +this.href.replace("http://www.docebo.com/doceboCms/index.php?mn=docs&op=download&","");
    });
    $("#thanks_close").bind("click", function() {
        $("#thankyou").css("visibility","collapse");
    });
});