﻿$(document).ready(function () {
    /*
    handle old style thickbox contact links that used thickbox, remove the tb_remove and all following thickbox commands. Only include page and guid.
    also remove title.
    old link: /portal/ORG/Contact.aspx?guid=f42abd91-d239-44a8-860d-4ebb6178d061&tb_remove=aThickBoxRemove?TB_iframe=true&height=400&width=568
    new link: /portal/ORG/Contact.aspx?guid=f42abd91-d239-44a8-860d-4ebb6178d061
    */
    $(".fancypopup").each(function () {
        // $(this).attr("href", ($(this).attr("href").substring(0, $(this).attr('href').indexOf('&tb_remove'))));
        //$(this).attr('title', null);

        registerFancyBox('fancypopup', 1100, 870, null, 'iframe', true);
    });

});
