﻿
$(document).ready(function () {
    setupLinks();

    $('a[href*="http://go.ingenix.com"]').attr('href', '#').attr('onclick', '$(\"#unavailableModal\").modal();').removeAttr("target");
});

function setupLinks() {
    $("a").each(function () {
        if ($.trim($(this).attr('href')).slice(-3) == "pdf" || $(this).attr('class') == "WebExPopUp")
            $(this).attr("target", "_blank");

        if ($(this).attr('href') == "/ContactUs/DELETE_SalesSupport/")
            $(this).attr("href", "mailto:info@i3global.com");
        
    });
}

function WebExPopUp() {

    $("a").each(function () {
        if ($.trim($(this).attr('class')) == "WebExPopUp") {
            $(this).attr("onclick", "window.open('" + $(this).attr('href') + "');return false;");            
        }
    });
}

