﻿(function ($) {

    $.fn.infoHelp = function () {

        var _container = this;
        var help = $('<div id="hlp" class="tbi" ><span class="fa fa-info-circle"></span></div>');

        help.on("click", function () {

            window.open("/help/info", "_blank", "width=1000,height=600,left=" + ((document.documentElement.clientWidth - 1000) * 0.5) + ",top=75");

        });

        $.post("/help/available", function (data) {

            if (data == "True") {
                help.prependTo($(_container));
            }
        });

        return this;
    }

}(jQuery));


$("#tbi").infoHelp();