    (function() {
        var LOAD_DELAY = 500;
        var LIVE_SUPPORT_URL = 'https://www.ez-web-hosting.com/help/visitor/index.php?_m=livesupport&_a=htmlcode&departmentid=0';
        var ICON_ELEMENT_IDS = [ "chatIcon1" ];

        var NUM_ELEMENTS = ICON_ELEMENT_IDS.length;
        var TARGET_WRITE_COUNT = 2;

        function installDocumentHook() {
            var _write = document.write;
            var writeCount = 0;
            document.write = function(s) {
                for (var i=0, len=ICON_ELEMENT_IDS.length; i<len; i++) {
                    document.getElementById(ICON_ELEMENT_IDS[i]).innerHTML += s;
                }
                if (writeCount++ >= TARGET_WRITE_COUNT) {
                    document.write = _write;
                }
            };
        }
        function addLiveResponse() {
            var newNode = document.createElement("script");
            newNode.language = "javascript";
            newNode.src = LIVE_SUPPORT_URL;
            installDocumentHook();
            document.body.appendChild(newNode);
        };
        var andThen = window.onload;
        window.onload = function() {
            if (andThen) window.setTimeout(andThen, 0);
            window.setTimeout(addLiveResponse, LOAD_DELAY);
        };
    })();
