﻿
$(document).ready(function () {


    $(".TI").click(function () {
        var i;
        i = this.id + '_a';
        var oc;
        oc = $(this).attr("onclick");
        if (oc.indexOf("document") == -1)
            window.open($("#" + i).attr("href"));
    });


    $(".SI").click(function () {
        var i;
        i = this.id + '_a';
        var oc;
        oc = $(this).attr("onclick");
        if (oc.indexOf("document") == -1)
            window.open($("#" + i).attr("href"));
    });

});

