Overview

URLhttp://hc2.humanclick.com
IP208.89.13.132
ASNAS11054 LivePerson, Inc
Location United States
Report completed2012-11-07 13:31:39 CET
StatusLoading report..
urlQuery Alerts No alerts detected


Settings

UserAgentMozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Referer
Adobe Reader8.0
Java1.6.0_26


Intrusion Detection Systems

Suricata /w Emerging Threats Pro No alerts detected
Snort /w Sourcefire VRT No alerts detected


Recent reports on same IP/ASN/Domain

Last 1 reports on IP: 208.89.13.132

Date Alerts / IDS URL IP
2012-12-13 08:45:340 / 0http://hc2.humanclick.com/hc/72524395/x.js?cmd=file&file=chatScript3&site=725 (...)208.89.13.132

Last 6 reports on ASN: AS11054 LivePerson, Inc

Date Alerts / IDS URL IP
2013-01-18 20:58:370 / 0http://server.iad.liveperson.net208.89.13.133
2013-01-18 20:58:300 / 0http://server.iad.liveperson.net.208.89.13.133
2013-01-17 07:28:580 / 0http://sales.liveperson.net/hc/1402662/?&site=1402662&cmd=mTagInPage&lpCallId=59315 (...)208.89.14.135
2013-01-16 12:23:140 / 0http://server.iad.liveperson.net208.89.13.133
2012-12-22 20:53:370 / 0http://sales.liveperson.net208.89.14.135
2012-12-13 19:33:510 / 0http://sales.liveperson.net/hc/618028/?&visitor=111360141027515&msessionkey=76226442871 (...)208.89.14.135

Last 1 reports on domain: hc2.humanclick.com

Date Alerts / IDS URL IP
2012-12-13 08:45:340 / 0http://hc2.humanclick.com/hc/72524395/x.js?cmd=file&file=chatScript3&site=72524395& (...)208.89.13.132



JavaScript

Executed Scripts (75)


Executed Evals (47)

#1 JavaScript::Eval (size: 764, repeated: 4)

function lpTagToBrowser(src, type, charset) {
    this.src = src;
    if (this.src.indexOf('?') == -1) {
        this.src += '?';
    }
    this.src = this.src + '&lpRandom=' + (new Date()).getTime();
    this.type = (typeof(type) == 'undefined') ? 'script' : type;
    this.charset = (typeof(charset) == 'undefined') ? 'UTF-8' : charset;
}
lpTagToBrowser.prototype.Start = function() {
    if (this.type == 'script') {
        var s = document.createElement(this.type);
        s.setAttribute('type', 'text/javascript');
        s.setAttribute('charset', this.charset);
        s.setAttribute('src', this.src);
        try {
            document.getElementsByTagName('head').item(0).appendChild(s);
        } catch (e) {
            if (typeof(lpMTagDebug) != 'undefined' && lpMTagDebug.Display) {
                lpMTagDebug.Display('Error appending element to DOM ' + e + ' src=' + this.src, 'ERROR');
            }
        }
    } else if (this.type == 'img') {
        var s = new Image();
        s.src = this.src;
    }
};

#2 JavaScript::Eval (size: 1743, repeated: 1)

function lpUpdateStaticButton() {
    this.hcDate = function() {
        var d = new Date();
        return d.getTime();
    };
    this.hcGetImage = function(name) {
        return this.hcFindImage(document, name);
    };
    this.hcFindImage = function(doc, name) {
        var i;
        if (this.hcDOM) {
            var elements = doc.getElementsByTagName('IMG');
            var collection = [];
            for (i = 0; i < elements.length; i++) {
                if ((typeof(elements[i].name) != 'undefined') && (elements[i].name == name)) {
                    collection[collection.length] = elements[i];
                }
            }
            if (collection.length == 0) {
                return null;
            }
            if (collection.length == 1) {
                return collection[0];
            }
            return collection;
        }
        var lays = doc.layers;
        if (!lays) {
            return doc[name];
        }
        for (i = 0; i < doc.images.length; i++) {
            if (doc.images[i].name == name) {
                return doc.images[i];
            }
        }
        for (var l = 0; l < lays.length; l++) {
            var img = this.hcFindImage(lays[l].document, name);
            if (img != null) {
                return img;
            }
        }
        return null;
    };
    this.hcDOM = (document.getElementById) ? true : false;
    this.hcimage = this.hcGetImage('hcIcon');
    this.hcicon = null;
    var i;
    if (this.hcimage) {
        if (!(this.hcimage.length)) {
            var temp = this.hcimage;
            this.hcimage = [];
            this.hcimage[0] = temp;
        }
        this.hcicon = [];
        for (i = 0; i < this.hcimage.length; i++) {
            this.hcicon[i] = this.hcimage[i].src;
        }
    }
    if (this.hcimage) {
        for (i = 0; i < this.hcimage.length; i++) {
            this.hcimage[i].src = this.hcicon[i] + '&monitor=1&d=' + this.hcDate();
        }
    }
    if (typeof(lpMTagStatic) != 'undefined' && typeof(lpMTagStatic.stateChangeCallbacks) != 'undefined') {
        for (i = 0; i < lpMTagStatic.stateChangeCallbacks.length; i++) {
            var tempfunc = lpMTagStatic.stateChangeCallbacks[i];
            try {
                tempfunc();
                if (lpConnLib.DebugDisplay) {
                    lpMTagDebug.Display('OK Executing Static button callback function', 'EXEC-OK');
                }
            } catch (hcError) {
                if (lpConnLib.DebugDisplay) {
                    lpMTagDebug.Display('ERROR Executing Static button callback function=' + tempfunc + ' &nbsp #' + hcError + '#', 'ERROR');
                }
            }
        }
    }
}
var lpUpdateStaticButtonObj = new lpUpdateStaticButton();

#3 JavaScript::Eval (size: 31703, repeated: 1)

function lpUtilPoint(x, y) {
    this.x = x;
    this.y = y
}
lpUtilPoint.prototype.toString = function() {
    return this.x + 'x' + this.y
};

function lpUtilRect(ul, br) {
    this.ul = ul;
    this.br = br;
    this.intersects = function(other) {
        return !((this.ul.x > other.br.x) || (this.br.x < other.ul.x) || (this.ul.y > other.br.y) || (this.br.y < other.ul.y))
    }
}
lpUtilRect.prototype.toString = function() {
    return '[' + this.ul.toString() + '-' + this.br.toString() + ']'
};

function lpUtilOverlapElement(el) {
    this.el = el;
    this.iv = el.style.visibility;
    this.rect = this.getRect();
    this.restore = function() {
        this.el.style.visibility = 'visible'
    };
    this.hide = function() {
        this.el.style.visibility = 'hidden'
    };
    this.intersects = function(invRect) {
        return !this.rect.intersects(invRect)
    };
    this.isHidden = function() {
        return this.el.style.visibility == 'hidden'
    }
}
lpUtilOverlapElement.prototype.getRect = function() {
    var ul = new lpUtilPoint(this.el.offsetLeft, this.el.offsetTop),
        parent = this.el.offsetParent;
    while (parent && (parent.tagName.toUpperCase() != 'BODY')) {
        ul.x += parent.offsetLeft;
        ul.y += parent.offsetTop;
        parent = parent.offsetParent
    }
    var br = new lpUtilPoint(ul.x + this.el.offsetWidth, ul.y + this.el.offsetHeight);
    return new lpUtilRect(ul, br)
};

function lpDynButton(objName, overwriteObj, buttonName, refresh, chanel, tooltip, divID, posX, posY, onTopIE, ieOnTopColour, hideObjects, relativeWidth, relativeHeight, contentType, imageUrl, onlineButImg, offlineButImg, busyButImg, alternateButImg, defaultButImg, htmlContainer, windowDimensions, LEAppID, buttonID, embedded, showPopOutOption) {
    this.embedded = embedded;
    this.showPopOut = showPopOutOption;
    this.buttonMaxLength = 350;
    this.maxErrorRequests = 3;
    this.ErrorRequestDelay = 5;
    this.ver = '8.2';
    this.firstCall = true;
    this.loopTimer = -1;
    this.connErrorCnt = 0;
    this.LEAppID = LEAppID;
    this.LEAppPrefix = 'dynBut:';
    this.LEeventSent = false;
    this.buttonID = buttonID;
    this.objName = objName;
    if (overwriteObj != '' && overwriteObj != 'null' && eval("typeof(" + overwriteObj + ")") != 'undefined') {
        this.overwriteObj = eval(overwriteObj)
    } else {
        this.overwriteObj = new Object()
    }
    var i, db, prop;
    this.butConfig = new Object();
    for (i = 0; i < lpMTagConfig.dynButton.length; i++) {
        db = lpMTagConfig.dynButton[i];
        if (db.name == buttonName) {
            for (prop in db) {
                this.butConfig[prop] = db[prop]
            }
        }
    }
    if (typeof(onTopIE) == 'undefined' || lpMTag.lpBrowser != 'IE') {
        this.onTopIE = false;
        this.ieOnTopColour = ""
    } else {
        if (onTopIE == 1) {
            this.onTopIE = true
        }
        this.ieOnTopColour = ieOnTopColour
    }
    this.origButtonName = buttonName;
    this.buttonName = buttonName;
    this.roomName = (typeof(lpMTagConfig.buttonRoom) == 'undefined') ? this.buttonName : lpMTagConfig.buttonRoom;
    this.extConfig = {};
    for (i = 0; i < lpMTagConfig.dynButton.length; i++) {
        db = lpMTagConfig.dynButton[i];
        if (db.name == this.buttonName) {
            for (prop in db) {
                this.extConfig[prop] = db[prop]
            }
            break
        }
    }
    this.refresh = refresh;
    this.tooltip = tooltip;
    this.voice = (chanel == 2);
    this.contentType = contentType;
    if (this.contentType == 0) {
        this.imageUrl = imageUrl;
        if (this.imageUrl.indexOf('http') != 0) {
            this.imageUrl = lpMTagConfig.lpProtocol + "://" + lpMTagConfig.lpServer + this.imageUrl
        }
        this.imgOnlineName = this.imageUrl + (this.voice ? 'voice_' : '') + 'reponline.gif';
        this.imgOfflineName = this.imageUrl + (this.voice ? 'voice_' : '') + 'repoffline.gif';
        this.imgBusyName = this.imageUrl + (this.voice ? 'voice_' : '') + 'repoccupied.gif';
        this.imgAlternateName = this.imageUrl + (this.voice ? 'voice_' : '') + 'alternate.gif';
        this.imgDefaultName = this.imageUrl + (this.voice ? 'voice_' : '') + 'transparent.gif'
    } else if (this.contentType == 1) {
        this.imgOnlineName = onlineButImg;
        this.imgOfflineName = offlineButImg;
        this.imgBusyName = busyButImg;
        this.imgAlternateName = alternateButImg;
        this.imgDefaultName = defaultButImg
    } else if (this.contentType == 2) {
        this.htmlContainerRef = eval(htmlContainer);
        this.onlineHTML = this.addActionHook('online');
        this.offlineHTML = this.addActionHook('offline');
        this.busyHTML = this.addActionHook('busy');
        this.alternateHTML = this.addActionHook('alternate');
        this.defaultHTML = this.addActionHook('default')
    }
    this.windowDimensions = windowDimensions;
    this.randomNum = Math.round(1000 * Math.random());
    this.posX = -1;
    this.posY = -1;
    this.createDiv = false;
    this.imageID = '';
    this.divID = '';
    this.lastResult = -1;
    this.innerHtml = '';
    this.imageID = 'lpDynamicButtonImg-' + this.randomNum;
    this.hrefID = 'lpDynamicButtonHref-' + this.randomNum;
    this.ifrmID = 'lpDynameicButtonIframe-' + this.randomNum;
    this.ifrmRef = null;
    if (this.contentType == 0 || this.contentType == 1) {
        this.butHtml = "<a href='#' id='" + this.hrefID + "' STYLE='cursor:default'>";
        this.butHtml += "<img id='" + this.imageID + "' name='" + this.imageID + "' border='0' style='border: 0px none' style='display: block;'/></a>"
    } else {
        this.butHtml = this.defaultHTML
    }
    this.useOverrideDiv = false;
    this.relativeWidth = relativeWidth;
    this.relativeHeight = relativeHeight;
    this.screenWidth = this.GetPageWidth();
    this.screenHeight = this.GetPageHeight();
    if (divID == '' || divID == null || divID == 'null') {
        this.createDiv = true;
        this.posX = posX;
        this.posY = posY;
        this.divID = 'lpDynamicButtonDiv-' + this.randomNum;
        if (this.relativeWidth >= 0 || this.relativeHeight >= 0) {
            this.posX = this.screenWidth * this.relativeWidth / 100;
            this.posY = this.screenHeight * this.relativeHeight / 100
        }
    } else {
        this.useOverrideDiv = true;
        this.divID = divID;
        this.createDiv = false
    }
    if (navigator.appVersion.indexOf('IE 5.') >= 0) {
        this.pointerStyle = 'hand'
    } else {
        this.pointerStyle = 'pointer'
    }
    this.AVAILIABLE = 'Available';
    this.BUSY = 'Busy';
    this.OFFLINE = 'Offline';
    this.redirAttempts = 10;
    this.redirTimeout = 500;
    this.zIndex = 300;
    this.buttonState = 'none';
    this.hideObjects = (hideObjects == 1);
    this.elsObjArray = new Array();
    this.elsHidden = new Array();
    if (this.onTopIE && this.hideObjects) {
        this.hideObjects = false;
        this.onTopIE = true
    }
    if (this.hideObjects) {
        this.elsObjArray = this.getAllProblematicElements();
        if (this.elsObjArray.length == 0) {
            this.hideObjects = false
        }
    }
    if (this.createDiv) {
        this.hcCreateGenericDiv(this.divID, this.zIndex, this.posX, this.posY, this.butHtml, null, null, false)
    } else {
        var d = this.GetObj(this.divID);
        if (d != null) {
            d.innerHTML = this.butHtml
        }
    }
    this.registeredEvents = [];
    if (this.embedded) {
        if (typeof(window.lpMTagConfig.frameAPI) != 'undefined' && typeof(window.lpMTagConfig.frameAPI.openFrame) == 'function') {
            var options = {
                server: lpMTagConfig.lpServer,
                protocol: lpMTagConfig.lpProtocol,
                showPopOut: this.showPopOut
            };
            window.lpMTagConfig.frameAPI.init(options)
        } else {
            this.log("frameAPI is undefined - unable to init iFrame", "ERROR")
        }
    }
}
lpDynButton.prototype.addActionHook = function(state) {
    var html = this.htmlContainerRef[state];
    if (typeof(html) != 'undefined' && html) {
        var onClickEventStr = state != 'default' ? this.objName + '.actionHook();' : '';
        return html.replace(/ON_CLICK_EVENT/g, onClickEventStr)
    } else {
        return ''
    }
};
lpDynButton.prototype.setTooltip = function(str) {
    var obj = this.GetObj(this.hrefID);
    if (obj != null) {
        obj.title = str
    }
    obj = this.GetObj(this.imageID);
    if (obj != null) {
        obj.alt = str
    }
};
lpDynButton.prototype.registerToEvent = function(ev, fn) {
    if (typeof(lpMTag) != 'undefined' && typeof(lpMTag.events) != 'undefined') {
        var eventData = {};
        eventData.id = lpMTag.events.register(ev, fn);
        eventData.eventName = ev;
        this.registeredEvents[this.registeredEvents.length] = eventData
    }
};
lpDynButton.prototype.Start = function() {
    var that = this;
    this.registerToEvent('LP_SESSION_INACTIVE', function() {
        that.ProcessInactive()
    });
    this.registerToEvent('EMT_BEFORE_SETPAGE', function() {
        that.clearState()
    });
    if (!this.EventHandler('start')) {
        return true
    }
    if (this.contentType == 0 || this.contentType == 1) {
        this.imgOnline = new Image();
        if (this.imgOnlineName != '') {
            this.imgOnline.src = this.imgOnlineName
        }
        this.imgOffline = new Image();
        if (this.imgOfflineName != '') {
            this.imgOffline.src = this.imgOfflineName
        }
        this.imgBusy = new Image();
        if (this.imgBusyName != '') {
            this.imgBusy.src = this.imgBusyName
        }
        this.imgAlternate = new Image();
        if (this.imgAlternateName != '') {
            this.imgAlternate.src = this.imgAlternateName
        }
        this.imgDefault = new Image();
        if (this.imgDefaultName != '') {
            this.imgDefault.src = this.imgDefaultName
        }
        this.refImage = this.GetObj(this.imageID);
        if (this.refImage) {
            if (this.imgDefaultName != '') {
                this.refImage.src = this.imgDefaultName
            }
            this.setTooltip(this.tooltip);
            this.refImage.onclick = function() {
                that.defaultAction();
                return false
            };
            if (this.refImage.width != 24 && this.refImage.width != 28 && this.refImage.width > 0) {
                this.StartQuery()
            } else {
                this.refImage.onload = function() {
                    that.StartQuery()
                }
            }
        }
    } else {
        this.StartQuery()
    }
};
lpDynButton.prototype.StartQuery = function() {
    if (this.contentType != 2) {
        this.refImage.onload = null
    }
    if (!this.EventHandler('shown')) {
        return true
    }
    if (this.hideObjects) {
        this.HideElements()
    }
    if (this.onTopIE) {
        this.CreateUpdateIframe()
    }
    this.DisplayDIV();
    if (this.extConfig.afterStartPage) {
        var that = this;
        lpMTagConfig.ifVisitorCode[lpMTagConfig.ifVisitorCode.length] = function() {
            that.onVisitor()
        }
    } else {
        this.MakeCall()
    }
};
lpDynButton.prototype.onVisitor = function() {
    this.MakeCall()
};
lpDynButton.prototype.CreateUpdateIframe = function() {
    var w = this.refImage.width,
        h = this.refImage.height,
        x = 0,
        y = 0;
    if (this.useOverrideDiv) {
        var d = this.GetObj(this.divID);
        if (d == null) {
            if (lpConnLib.DebugDisplay) {
                lpMTagDebug.Display('DynBut could not get ref to override DIV: ' + this.divID + ' obj: ' + this.objName, 'ERROR')
            }
            this.onTopIE = false;
            return
        } else {
            y = d.offsetTop;
            x = d.offsetLeft
        }
    } else {
        x = this.posX;
        y = this.posY
    }
    if (this.ifrmRef == null) {
        if (lpConnLib.DebugDisplay) {
            lpMTagDebug.Display('DynBut ' + this.objName + ' CREATING IFRAME:' + this.ifrmID + ' ' + this.ieOnTopColour, 'DEBUG')
        }
        this.ifrmRef = document.createElement("IFRAME");
        this.ifrmRef.setAttribute("id", this.ifrmID);
        this.ifrmRef.setAttribute("src", lpMTagConfig.lpProtocol + '://' + lpMTagConfig.lpServer + '/hcp/html/blankhtml.html');
        if (this.ieOnTopColour != '' && this.ieOnTopColour != 'null') {
            var div = this.GetObj(this.divID);
            div.style.backgroundColor = this.ieOnTopColour
        }
        this.ifrmRef.style.filter = "progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);";
        this.ifrmRef.style.style = "progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);";
        this.ifrmRef.frameBorder = '0';
        this.ifrmRef.scrolling = 'no';
        this.ifrmRef.style.top = y + "px";
        this.ifrmRef.style.left = x + "px";
        this.ifrmRef.style.position = 'absolute';
        this.ifrmRef.style.width = w + 'px';
        this.ifrmRef.style.height = h + 'px';
        this.ifrmRef.style.zIndex = this.zIndex - 1;
        this.ifrmRef.style.visibility = 'hidden';
        document.body.appendChild(this.ifrmRef)
    } else {
        if (lpConnLib.DebugDisplay) {
            lpMTagDebug.Display('DynBut ' + this.objName + ' UPDATING IFRAME:' + this.ifrmID + ' ' + this.ieOnTopColour + ' w/h=' + w + '/' + h, 'DEBUG')
        }
        if (w == 1 && h == 1) {
            setTimeout(this.objName + '.CreateUpdateIframe()', 400)
        }
        this.ifrmRef.style.width = w + 'px';
        this.ifrmRef.style.height = h + 'px'
    }
};
lpDynButton.prototype.onVisitor = function() {
    this.MakeCall()
};
lpDynButton.prototype.addFirstPartyCookies = function(url) {
    if (typeof(lpMTagConfig.useFirstParty) != 'undefined' && lpMTagConfig.useFirstParty) {
        if (url.indexOf('?') == -1) {
            url += '?'
        }
        var vid = lpMTag.lpGetCookie(lpMTagConfig.lpNumber + '-VID');
        if (vid != null) {
            url += '&visitor=' + vid;
            var skey = lpMTag.lpGetCookie(lpMTagConfig.lpNumber + "-SKEY");
            if (skey != null) {
                url += '&msessionkey=' + skey
            }
        }
    }
    return url
};
lpDynButton.prototype.MakeCall = function() {
    var that = this,
        cParam = new hcArrayStorage(),
        url = lpMTagConfig.lpProtocol + '://' + lpMTagConfig.lpServer + '/hc/' + lpMTagConfig.lpNumber + '/';
    if (lpMTag.addFirstPartyCookies) {
        url = lpMTag.addFirstPartyCookies(url)
    } else {
        url = this.addFirstPartyCookies(url)
    }
    cParam.add('cmd', 'mTagUrl');
    cParam.add('site', lpMTagConfig.lpNumber);
    cParam.add('SV!impression-query-name', this.buttonName);
    cParam.add('SV!impression-query-room', this.roomName);
    cParam.add('id', lpMTag.lpPageID);
    cParam.add('info', 'button-impression:' + this.buttonName + '(' + document.title + ')');
    cParam.add('waitForVisitor', 'true');
    cParam.add('d', (new Date().getTime()));
    cParam.add('page', lpMTagConfig.lpProtocol + '://' + lpMTagConfig.lpServer + '/hcp/width/img40.gif');
    if (this.getExtraInfo() != '') {
        var extra = this.getExtraInfo().split('&');
        for (var i = 0; i < extra.length; i++) {
            cParam.add(extra[i], undefined, true)
        }
    }
    if (lpMTag.mtagAddToQueue) {
        lpMTag.mtagAddToQueue(url, cParam, function(d) {
            that.DynButtonCallback(d)
        }, true)
    } else {
        lpConnLib.addToQueue(url, cParam, function(d) {
            that.DynButtonCallback(d)
        }, true)
    }
};
lpDynButton.prototype.DynButtonCallback = function(dataObj) {
    var that = this;
    if (typeof(dataObj.ResultSet.lpCallError) != 'undefined') {
        this.connErrorCnt++;
        if (dataObj.ResultSet.lpCallError == "NO-VISITOR") {
            if (typeof(lpMTagConfig.ifVisitorCode) == 'undefined') {
                lpMTagConfig.ifVisitorCode = []
            }
            lpMTagConfig.ifVisitorCode[lpMTagConfig.ifVisitorCode.length] = function() {
                that.onVisitor()
            };
            return
        } else if (dataObj.ResultSet.lpCallError == "NOT-ACTIVE") {
            this.ProcessResult('inactive');
            return
        } else if (this.connErrorCnt < this.maxErrorRequests) {
            this.loopTimer = setTimeout(this.objName + '.MakeCall()', this.connErrorCnt * this.ErrorRequestDelay * 1000)
        }
        return
    }
    this.firstCall = false;
    var result = dataObj.ResultSet.lpData[0].result;
    this.ProcessResult(result);
    if (typeof(this.loopTimer) != 'undefined') {
        clearTimeout(this.loopTimer)
    }
    if (this.refresh != -1) {
        this.loopTimer = setTimeout(this.objName + '.MakeCall()', this.refresh * 1000)
    }
};
lpDynButton.prototype.ProcessInactive = function() {
    this.buttonState = 'inactive';
    if (!this.EventHandler('state')) {
        return true
    }
    if (this.contentType == 0 || this.contentType == 1) {
        if (this.imgDefaultName != '') {
            this.refImage.src = this.imgDefaultName
        }
        this.refImage.alt = '';
        this.refImage.onclick = '';
        this.setCursorStyle('default');
        this.setTooltip('')
    } else {
        this.setDIVContent(this.defaultHTML)
    }
    if (this.onTopIE) {
        this.CreateUpdateIframe()
    }
};
lpDynButton.prototype.ProcessResult = function(result) {
    if (lpConnLib.DebugDisplay) {
        lpMTagDebug.Display('DynBut ' + this.origButtonName + ' query result=' + result, 'DEBUG')
    }
    if (this.lastResult == result) {
        return
    }
    this.lastResult = result;
    if (result == 40) {
        return
    }
    if (!this.voice && !this.LEeventSent) {
        this.reportImpression()
    }
    var that = this;
    if (result == 50 || result == 56) {
        this.buttonState = 'online';
        if (!this.EventHandler('state')) {
            return true
        }
        if (this.contentType == 0 || this.contentType == 1) {
            if (this.imgOnlineName != '') {
                this.refImage.src = this.imgOnlineName
            }
            this.refImage.alt = this.tooltip;
            this.refImage.onclick = function() {
                that.onlineAction();
                return false
            };
            this.setCursorStyle(this.pointerStyle);
            this.setTooltip(this.tooltip)
        } else {
            this.setDIVContent(this.onlineHTML)
        }
        if (this.onTopIE) {
            this.CreateUpdateIframe()
        }
    } else if (result == 60 || result == 66) {
        if (this.contentType == 2) {
            this.buttonState = 'busy';
            if (!this.EventHandler('state')) {
                return true
            }
            this.setDIVContent(this.busyHTML)
        } else {
            if (this.imgBusy.width > 0) {
                this.buttonState = 'busy';
                if (!this.EventHandler('state')) {
                    return true
                }
                if (this.imgBusyName != '') {
                    this.refImage.src = this.imgBusyName
                }
                this.refImage.alt = '';
                this.setCursorStyle('default');
                this.setTooltip('');
                if (typeof(this.overwriteObj.busyAction) != 'undefined') {
                    this.refImage.onclick = function() {
                        that.busyAction();
                        return false
                    }
                } else {
                    this.refImage.onclick = null
                }
            }
        }
        if (this.onTopIE) {
            this.CreateUpdateIframe()
        }
    } else if (result == 70 || result == 76) {
        if (this.contentType == 2) {
            this.buttonState = 'offline';
            if (!this.EventHandler('state')) {
                return true
            }
            this.setDIVContent(this.offlineHTML)
        } else {
            if (this.imgOffline.width > 0) {
                this.buttonState = 'offline';
                if (!this.EventHandler('state')) {
                    return true
                }
                if (this.imgOfflineName != '') {
                    this.refImage.src = this.imgOfflineName
                }
                this.refImage.alt = '';
                this.setCursorStyle('default');
                this.setTooltip('');
                if (typeof(this.overwriteObj.offlineAction) != 'undefined') {
                    this.refImage.onclick = function() {
                        that.offlineAction();
                        return false
                    }
                } else {
                    this.refImage.onclick = null
                }
            }
        }
        if (this.onTopIE) {
            this.CreateUpdateIframe()
        }
    } else if (result == 80 || result == 0 || result == 86) {
        if (this.contentType == 2) {
            this.buttonState = 'alternate';
            if (!this.EventHandler('state')) {
                return true
            }
            this.setDIVContent(this.alternateHTML)
        } else {
            if (this.imgAlternate.width > 0) {
                this.buttonState = 'alternate';
                if (!this.EventHandler('state')) {
                    return true
                }
                if (this.imgAlternateName != '') {
                    this.refImage.src = this.imgAlternateName
                }
                this.refImage.alt = '';
                this.setCursorStyle(this.pointerStyle);
                this.setTooltip('');
                this.refImage.onclick = function() {
                    that.alternateAction();
                    return false
                }
            }
        }
        if (this.onTopIE) {
            this.CreateUpdateIframe()
        }
    } else if (result == 90 || result == 96) {
        this.buttonState = 'status90';
        if (!this.EventHandler('state')) {
            return true
        }
        if (this.contentType == 0 || this.contentType == 1) {
            this.refImage.alt = '';
            this.refImage.onclick = function() {
                that.onlineAction();
                return false
            };
            this.setCursorStyle(this.pointerStyle);
            this.setTooltip(this.tooltip)
        } else {
            this.setDIVContent(this.onlineHTML)
        }
        if (this.onTopIE) {
            this.CreateUpdateIframe()
        }
    }
};
lpDynButton.prototype.reportImpression = function() {
    if (lpConnLib.DebugDisplay) {
        lpMTagDebug.Display('Delaying impression sending', 'DEBUG', 'DYNBUTTON')
    }
    this.sendImpression()
};
lpDynButton.prototype.sendImpression = function() {
    if (typeof(lpMTagConfig.LEeventsAPI) != 'undefined' && lpMTagConfig.LEeventsAPI) {
        this.initLEeventsAPI();
        if (typeof(lpMTagConfig.liveEngage) != 'undefined') {
            this.LEeventSent = true;
            lpMTagConfig.liveEngage.sendImpression(this.LEAppID, this.LEAppPrefix + this.buttonID)
        }
    } else {
        if (lpConnLib.DebugDisplay) {
            lpMTagDebug.Display('lpMTagConfig.LEeventsAPI is false', 'DEBUG', 'DYNBUTTON')
        }
    }
};
lpDynButton.prototype.initLEeventsAPI = function() {
    if (typeof(lpMTagConfig) != 'undefined' && typeof(lpMTagConfig.liveEngage) == 'undefined') {
        lpMTagConfig.liveEngage = {
            type: {
                impression: "impression",
                engage: "engage"
            },
            rdrDefault: {
                url: "",
                name: "_self",
                specs: ""
            },
            _sendEvent: function(appId, type, strData, redirectData) {
                if (typeof(appId) == 'undefined') {
                    this._log("appId was not defined", "ERROR");
                    return false
                }
                if (typeof(lpMTagConfig.LEeventsAPI) == 'undefined' || !lpMTagConfig.LEeventsAPI) {
                    this._log("Older app server version unified reports not supported (lpMTagConfig.LEeventsAPI != true)", "ERROR");
                    return false
                }
                this._log("Sending" + type + " event for application: " + appId);
                var params = new hcArrayStorage();
                params.add('site', lpMTagConfig.lpNumber);
                params.add('cmd', 'leVisitorEvent');
                params.add('type', type);
                params.add('appKey', appId);
                params.add('data', strData);
                var url = lpMTagConfig.lpProtocol + '://' + lpMTagConfig.lpServer + '/hc/' + lpMTagConfig.lpNumber + '/';
                if (typeof(redirectData) == 'undefined' || redirectData == null) {
                    if (typeof(lpConnLib) != 'undefined' && typeof(lpConnLib.addToQueue) != 'undefined') {
                        lpConnLib.addToQueue(url, params, null, true, 3, true, true, 5);
                        return true
                    } else {
                        this._log("lpConnLib or lpConnLib.addToQueue are not defined", "ERROR");
                        return false
                    }
                } else {
                    var rdrObj = {};
                    this._objectClone(this.rdrDefault, rdrObj);
                    if (typeof(redirectData) == 'string') {
                        rdrObj.url = redirectData
                    } else {
                        this._objectClone(redirectData, rdrObj)
                    }
                    return this._sendEventRedirect(url, params, rdrObj)
                }
            },
            _sendEventRedirect: function(url, params, rdrObj) {
                if (typeof(rdrObj.url) == 'undefined' || rdrObj.url == null || rdrObj.url == "") {
                    this._log("redirect url was not defined or empty");
                    return false
                }
                params.add('redirect', rdrObj.url);
                return window.open(this._getRedirectUrl(url, params), rdrObj.name, rdrObj.specs)
            },
            _getRedirectUrl: function(url, params) {
                var request = new lpRequest(lpConnLib.protocolVer, url, params, null, false, null, lpConnLib.prunIdentify, 5, "UTF-8", lpConnLib.browser, false, null, undefined, 0, 0, true, false, undefined, undefined, undefined, undefined);
                request.BuildCallUrl('get', lpConnLib.maxurlgetlength, true);
                return request.fullUrl
            },
            _objectClone: function(source, target) {
                var key;
                for (key in source) {
                    target[key] = source[key]
                }
            },
            _log: function(msg, type) {
                type = (type ? type : 'DEBUG');
                if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) == 'function') {
                    lpMTagDebug.Display(msg, type, 'LiveEngage.Report')
                }
            },
            sendImpression: function(appId, strData) {
                return this._sendEvent(appId, this.type.impression, strData)
            },
            sendEngagement: function(appId, strData, redirectData) {
                return this._sendEvent(appId, this.type.engage, strData, redirectData)
            }
        }
    }
};
lpDynButton.prototype.setDIVContent = function(html) {
    var d = this.GetObj(this.divID);
    if (d != null) {
        d.innerHTML = html
    } else {
        if (lpConnLib.DebugDisplay) {
            lpMTagDebug.Display('DynBut could not get ref to DIV: ' + this.divID + ' obj: ' + this.objName, 'ERROR')
        }
    }
};
lpDynButton.prototype.setCursorStyle = function(st) {
    this.refImage.cursor = st;
    var ref = this.GetObj(this.hrefID);
    ref.style.cursor = st
};
lpDynButton.prototype.actionHook = function() {
    switch (this.buttonState) {
    case "online":
        this.onlineAction();
        break;
    case "offline":
        this.offlineAction();
        break;
    case "busy":
        this.busyAction();
        break;
    case "alternate":
        this.alternateAction();
        break;
    case "default":
        this.defaultAction();
        break;
    default:
        this.onlineAction()
    }
};
lpDynButton.prototype.defaultAction = function() {
    if (this.isMultipleClicks()) {
        return true
    }
    if (!this.EventHandler('clicked')) {
        return true
    }
    if (typeof(this.overwriteObj.defaultAction) != 'undefined') {
        this.overwriteObj.defaultAction(this.objName)
    }
};
lpDynButton.prototype.onlineAction = function() {
    if (this.isMultipleClicks()) {
        return true
    }
    if (!this.EventHandler('clicked')) {
        return true
    }
    if (typeof(this.overwriteObj.onlineAction) != 'undefined') {
        this.overwriteObj.onlineAction(this.objName)
    } else {
        this.openChatWin(this.AVAILIABLE)
    }
};
lpDynButton.prototype.offlineAction = function() {
    if (this.isMultipleClicks()) {
        return true
    }
    if (!this.EventHandler('clicked')) {
        return true
    }
    if (typeof(this.overwriteObj.offlineAction) != 'undefined') {
        this.overwriteObj.offlineAction(this.objName)
    }
};
lpDynButton.prototype.busyAction = function() {
    if (this.isMultipleClicks()) {
        return true
    }
    if (!this.EventHandler('clicked')) {
        return true
    }
    if (typeof(this.overwriteObj.busyAction) != 'undefined') {
        this.overwriteObj.busyAction(this.objName)
    }
};
lpDynButton.prototype.alternateAction = function() {
    if (this.isMultipleClicks()) {
        return true
    }
    if (!this.EventHandler('clicked')) {
        return true
    }
    if (typeof(this.overwriteObj.alternateAction) != 'undefined') {
        this.overwriteObj.alternateAction(this.objName)
    }
};
lpDynButton.prototype.isMultipleClicks = function() {
    var timeDelay = 0;
    if (typeof(lpMTagConfig.dbMultipleClickDelay) != 'undefined') {
        timeDelay = lpMTagConfig.dbMultipleClickDelay
    }
    if (typeof(this.extConfig.dbMultipleClickDelay) != 'undefined') {
        timeDelay = this.extConfig.dbMultipleClickDelay
    }
    var timeNow = (new Date()).getTime();
    if (timeDelay > 0) {
        if (typeof(lpMTagConfig.dbLastClicked) != 'undefined') {
            if ((timeNow - lpMTagConfig.dbLastClicked) < (timeDelay * 1000)) {
                if (lpConnLib.DebugDisplay) {
                    lpMTagDebug.Display('DynBut ' + this.objName + ' multiple clicked:', 'DEBUG')
                }
                return true
            }
        }
    }
    lpMTagConfig.dbLastClicked = timeNow;
    return false
};
lpDynButton.prototype.openChatWin = function(buttonState) {
    var windowName = (this.voice ? 'call' : 'chat') + lpMTagConfig.lpNumber;
    this.updateWindowDimensions();
    var url = this.getActionURL(buttonState).replace(lpMTagConfig.lpProtocol, "https");
    if (this.embedded && window.addEventListener && !this.voice) {
        if (typeof(window.lpMTagConfig.frameAPI) != 'undefined' && typeof(window.lpMTagConfig.frameAPI.openFrame) == 'function') {
            var options = {
                src: url,
                width: this.windowWidth,
                height: this.windowHeight,
                title: 'Chat'
            };
            window.lpMTagConfig.frameAPI.openFrame(options);
            return
        } else {
            this.log("frameAPI is undefined - unable to embed chat", "ERROR")
        }
    }
    window.open(url, windowName, 'width=' + this.windowWidth + ',height=' + this.windowHeight + ',status=0,resizable=0,menubar=no,scrollbars=no')
};
lpDynButton.prototype.updateWindowDimensions = function() {
    var curWindowDimensions = this.windowDimensions[this.buttonState] || this.windowDimensions['none'];
    this.windowWidth = curWindowDimensions.width;
    this.windowHeight = curWindowDimensions.height
};
lpDynButton.prototype.getActionURL = function(buttonState) {
    var url = lpMTagConfig.lpProtocol + "://" + lpMTagConfig.lpServer + "/hc/" + lpMTagConfig.lpNumber + "/cmd/url/?site=" + lpMTagConfig.lpNumber;
    if (lpMTag.addFirstPartyCookies) {
        url = lpMTag.addFirstPartyCookies(url)
    } else {
        url = this.addFirstPartyCookies(url)
    }
    url += "&SV!click-query-name=" + escape(this.buttonName) + "&SV!click-query-room=" + escape(this.roomName) + "&SV!click-query-state=" + escape(buttonState) + "&SV!click-query-channel=" + (this.voice ? 'voice' : 'web') + "&page=" + escape(this.getWinURL(buttonState)) + "&id=" + lpMTag.lpPageID + "&waitForVisitor=redirectBack&redirectAttempts=" + this.redirAttempts + "&redirectTimeout=" + this.redirTimeout + "&" + this.getExtraInfo() + "&d=" + (new Date().getTime());
    return url
};
lpDynButton.prototype.CheckAttachSSO = function(url) {
    this.useSSO = false;
    this.SSOurl = '';
    if (typeof(this.butConfig.noSSO) != 'undefined' && this.butConfig.noSSO) {
        return url
    }
    if (typeof(this.butConfig.SSOURL) != 'undefined' && this.butConfig.SSOURL != '') {
        this.useSSO = true;
        this.SSOurl = this.butConfig.SSOURL;
        url = this.butConfig.SSOURL + '?' + url;
        return url
    }
    if (typeof(lpMTagConfig.SSOURL) != 'undefined' && lpMTagConfig.SSOURL != '') {
        this.useSSO = true;
        this.SSOurl = lpMTagConfig.SSOURL;
        url = lpMTagConfig.SSOURL + '?' + url;
        return url
    }
    if (typeof(lpMTagConfig.sso_keygen_url) != 'undefined' && lpMTagConfig.sso_keygen_url != '') {
        this.useSSO = true;
        this.SSOurl = lpMTagConfig.sso_keygen_url;
        url = lpMTagConfig.sso_keygen_url + '?' + url;
        return url
    }
    return url
};
lpDynButton.prototype.getWinURL = function(buttonState) {
    var referrerString = "&referrer=(button%20dynamic-button:" + escape(this.buttonName) + "(" + escape(document.title) + "))%20" + this.LimitString(escape(document.location), 200),
        forceOfflineString = (buttonState != this.AVAILIABLE) ? ("&forceOffline=true&SV!OfflineTrigger=" + buttonState + "Click") : "",
        cmd = this.voice ? "visitorWantsToTalk" : "visitorWantsToChat",
        url = lpMTagConfig.lpProtocol + "://" + lpMTagConfig.lpServer + "/hc/" + lpMTagConfig.lpNumber + "/?cmd=file&file=" + cmd + "&site=" + lpMTagConfig.lpNumber;
    if (lpMTag.addFirstPartyCookies) {
        url = lpMTag.addFirstPartyCookies(url)
    } else {
        url = this.addFirstPartyCookies(url)
    }
    if (!this.voice) {
        url += "&LEAppKey=" + this.LEAppID
    }
    url += forceOfflineString + "&SV!chat-button-name=" + escape(this.buttonName) + "&SV!chat-button-room=" + escape(this.roomName) + referrerString;
    url = this.CheckAttachSSO(url);
    return url
};
lpDynButton.prototype.getExtraInfo = function() {
    for (var i = 0; i < lpMTagConfig.dynButton.length; i++) {
        if (lpMTagConfig.dynButton[i].name == this.origButtonName) {
            if (typeof(lpMTagConfig.dynButton[i].extra) != 'undefined') {
                return lpMTagConfig.dynButton[i].extra
            } else {
                return ''
            }
        }
    }
    return ''
};
lpDynButton.prototype.getDate = function() {
    var d = new Date();
    return d.getTime()
};
lpDynButton.prototype.DisplayDIV = function() {
    if (this.onTopIE) {
        this.ifrmRef.style.visibility = 'visible'
    }
    var objCont = this.GetObj(this.divID);
    if (objCont) {
        objCont.style.visibility = 'visible'
    }
};
lpDynButton.prototype.HideDIV = function() {
    if (this.onTopIE) {
        this.ifrmRef.style.visibility = 'hidden'
    }
    this.GetObj(this.divID).style.visibility = 'hidden'
};
lpDynButton.prototype.hcCreateGenericDiv = function(id, zindex, left, top, innerHtml, cursor, onclickFunction, isVisible) {
    if (!document.getElementsByTagName) {
        return
    }
    var body = document.getElementsByTagName('body');
    if (!body) {
        return
    }
    if (this.GetObj(id) != null) {
        return
    }
    var divE = document.createElement('div');
    divE.setAttribute('id', id);
    divE.setAttribute('name', id);
    divE.style.zIndex = zindex;
    divE.style.position = 'absolute';
    divE.style.visibility = isVisible ? 'visible' : 'hidden';
    divE.style.left = left + 'px';
    divE.style.top = top + 'px';
    if (cursor != null) {
        divE.style.cursor = cursor
    }
    if (onclickFunction != null) {
        divE.onclick = onclickFunction
    }
    divE.innerHTML = innerHtml;
    if (document.body.firstChild != null) {
        document.body.insertBefore(divE, document.body.firstChild)
    } else {
        body.appendChild(divE)
    }
};
lpDynButton.prototype.GetObj = function(id) {
    if (document.getElementById) {
        return document.getElementById(id)
    } else {
        if (document.all) {
            return document.all(id)
        }
    }
    return null
};
lpDynButton.prototype.LimitString = function(str, maxsize) {
    if (str.length > maxsize) {
        return str.substring(0, maxsize)
    } else {
        return str
    }
};
lpDynButton.prototype.EventHandler = function(ev) {
    if (lpConnLib.DebugDisplay) {
        var txt = ev;
        if (ev == 'state') {
            txt = ev + ' ' + this.buttonState
        }
        lpMTagDebug.Display('DynBut ' + this.objName + ' EVENT: ' + txt, 'DEBUG')
    }
    switch (ev) {
    case 'start':
        this.mTagEvent('LP_DYNBUTTON_START');
        if (typeof(this.overwriteObj.dbStart) != 'undefined') {
            return this.overwriteObj.dbStart(this.objName)
        }
        break;
    case 'shown':
        this.mTagEvent('LP_DYNBUTTON_SHOWN');
        if (typeof(this.overwriteObj.dbShown) != 'undefined') {
            return this.overwriteObj.dbShown(this.objName)
        }
        break;
    case 'clicked':
        this.mTagEvent('LP_DYNBUTTON_CLICKED');
        if (typeof(this.overwriteObj.dbClicked) != 'undefined') {
            return this.overwriteObj.dbClicked(this.objName, this.buttonState)
        }
        break;
    case 'state':
        this.mTagEvent('LP_DYNBUTTON_STATE');
        if (typeof(this.overwriteObj.dbStateChange) != 'undefined') {
            return this.overwriteObj.dbStateChange(this.objName, this.buttonState)
        }
        break
    }
    return true
};
lpDynButton.prototype.GetPageHeight = function() {
    if (window.innerHeight) {
        return window.innerHeight
    } else if (document.documentElement && document.documentElement.clientHeight) {
        return document.documentElement.clientHeight
    } else if (document.body) {
        return document.body.clientHeight
    }
};
lpDynButton.prototype.GetPageWidth = function() {
    if (document.documentElement && document.documentElement.clientWidth) {
        return document.documentElement.clientWidth
    } else if (document.body) {
        return document.body.clientWidth
    } else {
        return window.innerWidth
    }
};
lpDynButton.prototype.getDBRect = function() {
    var div = new lpUtilOverlapElement(this.GetObj(this.divID));
    return div.getRect()
};
lpDynButton.prototype.HideElements = function() {
    if (!this.hideObjects) {
        return
    }
    var dbRect = this.getDBRect();
    this.unhidePrevHiddenElements(dbRect);
    var length = this.elsObjArray.length;
    for (var i = 0; i < length; i++) {
        var hideEl = new lpUtilOverlapElement(this.elsObjArray[i]);
        if (!hideEl.isHidden() && dbRect.intersects(hideEl.rect)) {
            this.elsHidden[this.elsHidden.length] = hideEl;
            hideEl.hide()
        }
    }
};
lpDynButton.prototype.unhidePrevHiddenElements = function(invRect) {
    var tmpArr = this.elsHidden;
    this.elsHidden = new Array();
    for (var i = 0; i < tmpArr.length; i++) {
        if (!invRect.intersects(tmpArr[i].rect)) {
            tmpArr[i].restore()
        } else {
            this.elsHidden[this.elsHidden.length] = tmpArr[i]
        }
    }
};
lpDynButton.prototype.getAllProblematicElements = function() {
    var elArray = new Array(),
        i, e, hide, attr;
    if (lpMTag.lpBrowser == 'IE') {
        var sels = document.getElementsByTagName('SELECT');
        for (i = 0; i < sels.length; i++) {
            elArray[elArray.length] = sels[i]
        }
    }
    if (lpMTag.lpBrowser == 'IE') {
        var objs = document.getElementsByTagName('OBJECT');
        for (i = 0; i < objs.length; i++) {
            var childs = objs[i].childNodes;
            hide = true;
            for (var n = 0; n < childs.length; n++) {
                attr = childs[n].attributes;
                var atst = '',
                    check = false;
                if (attr != null) {
                    for (e = 0; e < attr.length; e++) {
                        if (attr[e].value != 'null' && attr[e].value != null && attr[e].value != '') {
                            atst += attr[e].value.toUpperCase() + ' ';
                            if (attr[e].value.toUpperCase() == 'WMODE') {
                                check = true
                            }
                        }
                    }
                    if (check && (atst.indexOf('TRANSPARENT') != -1 || atst.indexOf('OPAQUE') != -1)) {
                        hide = false;
                        break
                    }
                }
            }
            if (hide) {
                elArray[elArray.length] = objs[i]
            }
        }
    } else {
        var es = document.getElementsByTagName('EMBED');
        for (i = 0; i < es.length; i++) {
            hide = true;
            attr = es[i].attributes;
            if (attr != null) {
                for (e = 0; e < attr.length; e++) {
                    if (attr[e].name.toUpperCase() == 'WMODE' && (attr[e].value.toUpperCase() == 'TRANSPARENT' || attr[e].value.toUpperCase() == 'OPAQUE')) {
                        hide = false;
                        break
                    }
                }
            }
            if (hide) {
                elArray[elArray.length] = es[i]
            }
        }
    }
    var as = document.getElementsByTagName('APPLET');
    for (i = 0; i < as.length; i++) {
        elArray[elArray.length] = as[i]
    }
    return elArray
};
lpDynButton.prototype.clearState = function(evName, params) {
    if (typeof(this.butConfig.pid) != "undefined" && document.getElementById(this.butConfig.pid) == null) {
        this.clearConfig();
        this.clearInstance()
    }
};
lpDynButton.prototype.clearConfig = function() {
    try {
        if (typeof(lpMTagConfig.dynButton) != 'undefined') {
            for (var i = 0; i < lpMTagConfig.dynButton.length; i++) {
                if (this.butConfig.name == lpMTagConfig.dynButton[i].name) {
                    lpMTagConfig.dynButton.splice(i, 1);
                    i--;
                    if (lpConnLib.DebugDisplay) {
                        lpMTagDebug.Display('DynBut : ' + this.butConfig.name + ' removed from config', 'DEBUG')
                    }
                }
            }
        }
    } catch (e) {
        if (lpConnLib.DebugDisplay) {
            lpMTagDebug.Display('DynBut' + this.objName + 'clear from config.Error' + e, 'ERROR')
        }
    }
};
lpDynButton.prototype.clearInstance = function() {
    try {
        if (this.loopTimer != -1) {
            clearTimeout(this.loopTimer)
        }
        for (i = 0; i < this.registeredEvents.length; i++) {
            var eventData = this.registeredEvents[i];
            lpMTag.events.unregister(eventData.id);
            if (lpConnLib.DebugDisplay) {
                lpMTagDebug.Display('DynBut : ' + this.butConfig.name + ' unregistred from event name: ' + eventData.eventName + ",event id:" + eventData.id, 'DEBUG')
            }
        }
        var configName = this.butConfig.name,
            objName = this.objName;
        setTimeout(function() {
            try {
                var namePart = objName.split('.');
                delete window[namePart[0]][namePart[1]];
                if (lpConnLib.DebugDisplay) {
                    lpMTagDebug.Display('DynBut : ' + configName + ' instance removed. ', 'DEBUG')
                }
            } catch (e) {
                if (lpConnLib.DebugDisplay) {
                    lpMTagDebug.Display('Error removing instance : ' + configName + 'Error : ' + e, 'ERROR')
                }
            }
        }, 0)
    } catch (e) {
        if (lpConnLib.DebugDisplay) {
            lpMTagDebug.Display('DynBut' + this.objName + 'clear instance and data .Error' + e, 'ERROR')
        }
    }
};
lpDynButton.prototype.mTagEvent = function(evName) {
    if (typeof(lpMTag) != 'undefined' && typeof(lpMTag.events) != 'undefined' && typeof(lpMTag.events.publish) == 'function') {
        var evData = {
            name: this.origButtonName,
            channel: (this.voice ? 'voice' : 'chat'),
            buttonState: this.buttonState
        };
        lpMTag.events.publish(evName, evData)
    }
};

#4 JavaScript::Eval (size: 108, repeated: 1)

if (lpMTagConfig.lpServer != 'base.liveperson.net') {
    lpMTag.overrideLPServer('base.liveperson.net', true);
}

#5 JavaScript::Eval (size: 2829, repeated: 1)

if (typeof(lpMTagConfig.marketer) == 'undefined') {
    lpMTagConfig.marketer = {
        offerRequestCount: 0
    };
    lpMTagConfig.marketer.startBanner = function(type, offer, lpOffer) {
        lpMTagConfig.marketer.data = {
            oxOffer: offer,
            lpOffer: lpOffer
        };
        var src = lpMTagConfig.marketer.cdnUrl + lpOffer.type.toLowerCase() + '/' + lpOffer.type.toLowerCase() + '.js';
        src = this.checkHttps(src);
        this.createScript(src);
    };
    lpMTagConfig.marketer.requestOffer = function(src, threshold) {
        if (typeof(threshold) == 'undefined') {
            threshold = 1;
        }
        if (lpMTagConfig.marketer.shown) {
            if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) == 'function') {
                lpMTagDebug.Display('Not requesting offer because one is currently shown', 'DEBUG', 'LiveEngage');
            }
        } else if (lpMTagConfig.marketer.wasShown) {
            if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) == 'function') {
                lpMTagDebug.Display('Not requesting offer because one was shown', 'DEBUG', 'LiveEngage');
            }
        } else if (lpMTagConfig.marketer.offerRequestCount < threshold) {
            lpMTagConfig.marketer.offerRequestCount++;
            src = this.checkHttps(src);
            if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) == 'function') {
                lpMTagDebug.Display('Requesting offer:' + src, 'DEBUG', 'LiveEngage');
            }
            this.createScript(src);
        } else {
            if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) == 'function') {
                lpMTagDebug.Display('Not requesting offer because one was already requested', 'DEBUG', 'LiveEngage');
            }
        }
    };
    lpMTagConfig.marketer.checkHttps = function(src) {
        if (lpMTagConfig.lpProtocol == 'https' && src.indexOf('https') != 0) {
            src = 'https' + src.substr(4);
        }
        return src;
    };
    lpMTagConfig.marketer.createScript = function(src) {
        var s = document.createElement('script');
        s.setAttribute('type', 'text/javascript');
        s.setAttribute('charset', 'UTF-8');
        s.setAttribute('id', 'lpm-requestOffer-' + lpMTagConfig.marketer.offerRequestCount);
        s.setAttribute('src', src);
        document.getElementsByTagName('head').item(0).appendChild(s);
    };
}
lpMTagConfig.marketer.appKey = 'b39f66a5c8034676a4b4a3769e22f91b';
lpMTagConfig.marketer.cdnUrl = 'https://lm.liveperson.net/a/le/marketer/content/offerJs/';
lpMTagConfig.marketer.requestOffer('https://a.iad.lpsnmedia.net//openx_a/www/delivery/al.php?zoneid=162&source=214d9d326525e26f7f7b9cbf67f96b2|de6f74539dc3de854371bec2a7a3da&ControlGroup=false', 50);
'';
lpMTagConfig.marketer.dynamicVariables = {
    "searchKeywords": "",
    "searchEngine": "",
    "browser": "Firefox 3.6.13",
    "country": "Norway",
    "state": "Oslo",
    "city": "Oslo"
};

#6 JavaScript::Eval (size: 2926, repeated: 1)

if (typeof(lpMTagConfig.marketer) == 'undefined') {
    lpMTagConfig.marketer = {
        offerRequestCount: 0
    };
    lpMTagConfig.marketer.startBanner = function(type, offer, lpOffer) {
        lpMTagConfig.marketer.data = {
            oxOffer: offer,
            lpOffer: lpOffer
        };
        var src = lpMTagConfig.marketer.cdnUrl + lpOffer.type.toLowerCase() + '/' + lpOffer.type.toLowerCase() + '.js';
        src = this.checkHttps(src);
        this.createScript(src);
    };
    lpMTagConfig.marketer.requestOffer = function(src, threshold) {
        if (typeof(threshold) == 'undefined') {
            threshold = 1;
        }
        if (lpMTagConfig.marketer.shown) {
            if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) == 'function') {
                lpMTagDebug.Display('Not requesting offer because one is currently shown', 'DEBUG', 'LiveEngage');
            }
        } else if (lpMTagConfig.marketer.wasShown) {
            if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) == 'function') {
                lpMTagDebug.Display('Not requesting offer because one was shown', 'DEBUG', 'LiveEngage');
            }
        } else if (lpMTagConfig.marketer.offerRequestCount < threshold) {
            lpMTagConfig.marketer.offerRequestCount++;
            src = this.checkHttps(src);
            if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) == 'function') {
                lpMTagDebug.Display('Requesting offer:' + src, 'DEBUG', 'LiveEngage');
            }
            this.createScript(src);
        } else {
            if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) == 'function') {
                lpMTagDebug.Display('Not requesting offer because one was already requested', 'DEBUG', 'LiveEngage');
            }
        }
    };
    lpMTagConfig.marketer.checkHttps = function(src) {
        if (lpMTagConfig.lpProtocol == 'https' && src.indexOf('https') != 0) {
            src = 'https' + src.substr(4);
        }
        return src;
    };
    lpMTagConfig.marketer.createScript = function(src) {
        var s = document.createElement('script');
        s.setAttribute('type', 'text/javascript');
        s.setAttribute('charset', 'UTF-8');
        s.setAttribute('id', 'lpm-requestOffer-' + lpMTagConfig.marketer.offerRequestCount);
        s.setAttribute('src', src);
        document.getElementsByTagName('head').item(0).appendChild(s);
    };
}
lpMTagConfig.marketer.appKey = 'b39f66a5c8034676a4b4a3769e22f91b';
lpMTagConfig.marketer.cdnUrl = 'https://lm.liveperson.net/a/le/marketer/content/offerJs/';
lpMTagConfig.marketer.requestOffer('https://a.iad.lpsnmedia.net//openx_a/www/delivery/al.php?zoneid=162&source=6f14c075c5227974498e13e4a3e72173|b7cb4377e4219116be76b0c4c18bff8|2355b41e44cc7dd1d1fbbc4236478c6|214d9d326525e26f7f7b9cbf67f96b2|de6f74539dc3de854371bec2a7a3da&ControlGroup=false', 50);
'';
lpMTagConfig.marketer.dynamicVariables = {
    "searchKeywords": "",
    "searchEngine": "",
    "browser": "Firefox 3.6.13",
    "country": "Norway",
    "state": "Oslo",
    "city": "Oslo"
};

#7 JavaScript::Eval (size: 14891, repeated: 1)

if (!window.lpMTagConfig) {
    window.lpMTagConfig = {}
}
if (!window.lpMTagStatic) {
    window.lpMTagStatic = {}
}
if (typeof(window.lpMTagConfig.frameAPI) == 'undefined') {
    window.lpMTagConfig.frameAPI = window.lpMTagStatic.frameAPI = (function() {
        var overlayWrapper, imgPath, standByWrapper, template, timer, frame = null,
            frameTitle, resizeBtn, closeBtn, minMaxBtn, popBtn, isDragging = false,
            isResizing = false,
            callbacks, overlayAttr = {
                pending: false,
                styleLoaded: false,
                isMinimize: false,
                top: 10,
                left: 10,
                offsetX: 0,
                offsetY: 0,
                src: null,
                title: "LP Chat",
                barLocation: "BR",
                dimensions: {
                    width: 400,
                    minWidth: 200,
                    minHeight: 200,
                    height: 300,
                    titleHeight: 30
                }
            };

        function init(options) {
            loadStyle(options.skin);
            imgPath = options.imagesPath;
            var display = 'display: none;';
            if (options.showPopOut) {
                display = ''
            }
            template = "<div class='LP_UNSELECTABLE_TXT' style='' id='LP_FRAME_TITLE'><span class='titleText'></span><span class='closeBtn' style='background: url(\"" + imgPath + "/sprite.png\") no-repeat 0 0;'></span><span class='minBtn' style='background: url(\"" + imgPath + "/sprite.png\") no-repeat 0 0;'></span><span class='popBtn' style='background: url(\"" + imgPath + "/sprite.png\") no-repeat 0 0; " + display + "'></span></div><div><div class='resizeMsk'></div><span style='background: url(\"" + imgPath + "/sprite.png\") no-repeat 0 -120px;' class='resizeBtn'></span><iframe scrolling='auto'></iframe></div>";
            callbacks = {
                "closeFrame": closeFrame
            };
        }
        function renderOverlay() {
            overlayAttr.pending = false;
            overlayWrapper = document.createElement("DIV");
            overlayWrapper.id = "LP_CHAT_DIALOG";
            overlayWrapper.innerHTML = template;
            overlayWrapper.style.top = overlayAttr.top + "px";
            overlayWrapper.style.left = overlayAttr.left + "px";
            overlayWrapper.style.zIndex = getMaxZIndex();
            overlayWrapper.className = "LP_CHAT_DIALOG LP_UNSELECTABLE_TXT";
            frame = overlayWrapper.getElementsByTagName("IFRAME")[0];
            frame.src = overlayAttr.src;
            frame.name = overlayAttr.hostOrigin;
            setDimensions();
            setDialogUI();
            addUIListeners();
            if (standByWrapper != null) {
                standByWrapper.parentNode.removeChild(standByWrapper);
                standByWrapper = null
            }
            document.body.appendChild(overlayWrapper)
        }
        function renderStandBy() {
            var vp = getViewPortSize();
            standByWrapper = document.createElement("DIV");
            standByWrapper.innerHTML = "Loading ...";
            standByWrapper.style.borderRadius = "5px";
            standByWrapper.style.display = "block";
            standByWrapper.style.border = "1px solid #CCC";
            standByWrapper.style.position = "fixed";
            standByWrapper.style.width = overlayAttr.dimensions.width + "px";
            standByWrapper.style.height = overlayAttr.dimensions.height + "px";
            standByWrapper.style.top = overlayAttr.top + "px";
            standByWrapper.style.left = overlayAttr.left + "px";
            standByWrapper.style.boxShadow = "0 1px 5px 0 rgba(0, 0, 0, 0.3)";
            standByWrapper.style.fontFamily = "arial";
            standByWrapper.style.textAlign = "center";
            standByWrapper.style.paddingTop = "30px";
            standByWrapper.style.backgroundColor = "white";
            document.body.appendChild(standByWrapper)
        }
        function setDimensions() {
            if (!overlayAttr.isMinimize) {
                var dimensions = overlayAttr.dimensions;
                overlayWrapper.style.width = dimensions.width + "px";
                overlayWrapper.style.height = dimensions.height + "px";
                frame.style.width = (dimensions.width) + "px";
                frame.style.height = (dimensions.height - dimensions.titleHeight - 1) + "px"
            }
        }
        function setDialogUI() {
            frameTitle = overlayWrapper.querySelector("#LP_FRAME_TITLE");
            closeBtn = frameTitle.querySelector(".closeBtn");
            minMaxBtn = frameTitle.querySelector(".minBtn");
            popBtn = frameTitle.querySelector(".popBtn");
            resizeBtn = overlayWrapper.querySelector(".resizeBtn");
            frameTitle.style.height = overlayAttr.dimensions.titleHeight + "px";
            overlayWrapper.querySelector("#LP_FRAME_TITLE .titleText").innerHTML = overlayAttr.title
        }
        function initOrigin() {
            sendMsg(getMsgJSON("setOrigin"))
        }
        function receiveMsg(e) {
            try {
                if (e.origin == overlayAttr.origin) {
                    var msg = JSON.parse(e.data);
                    switch (msg.action) {
                    case "resizeTo":
                        resize(msg.data.width, parseInt(msg.data.height, 10) + overlayAttr.dimensions.titleHeight);
                        break;
                    case "resizeBy":
                        resize(overlayAttr.dimensions.width + msg.data.width, overlayAttr.dimensions.height + msg.data.height + overlayAttr.dimensions.titleHeight);
                        break;
                    case "endChat":
                        callbacks[msg.callback]();
                        break;
                    case "setFrameLocation":
                        overlayAttr.src = msg.data.location;
                        break;
                    case "getFrameProperty":
                        callbacks[msg.callback](msg.data.propValue);
                        break
                    }
                }
            } catch (e) {
                console.log(e)
            }
        }
        function sendMsg(msgStr) {
            try {
                if (overlayAttr.src) {
                    frame.contentWindow.postMessage(msgStr, overlayAttr.src)
                }
            } catch (e) {
                console.log(e)
            }
        }
        function getMsgJSON(action, data, callback) {
            try {
                return JSON.stringify({
                    action: action,
                    data: data || null,
                    callback: callback || null
                })
            } catch (e) {
                console.log(e);
                return null
            }
        }
        function addUIListeners() {
            try {
                closeBtn.addEventListener("click", requestChatEnd);
                minMaxBtn.addEventListener("click", minimize);
                popBtn.addEventListener("click", popOut);
                window.addEventListener("scroll", onScroll, false);
                window.addEventListener("resize", onWinResize, false);
                addDragListeners();
                resizeBtn.addEventListener("mousedown", startResize);
                window.addEventListener("mouseup", stopResize, false);
                window.addEventListener("mousemove", onResize, true);
                window.addEventListener("message", receiveMsg, false);
                frame.addEventListener("load", initOrigin);
                overlayWrapper.addEventListener("selectstart", preventSelection)
            } catch (e) {
                console.log(e)
            }
        }
        function removeUIListeners() {
            try {
                closeBtn.removeEventListener("click", requestChatEnd);
                minMaxBtn.removeEventListener("click", minimize);
                popBtn.removeEventListener("click", popOut);
                window.removeEventListener("scroll", onScroll, false);
                window.removeEventListener("resize", onWinResize, false);
                removeDragListeners();
                resizeBtn.removeEventListener("mousedown", startResize);
                window.removeEventListener("mouseup", stopResize, false);
                window.removeEventListener("mousemove", onResize, true);
                window.removeEventListener("message", receiveMsg, false);
                frame.removeEventListener("load", initOrigin);
                overlayWrapper.removeEventListener("selectstart", preventSelection)
            } catch (e) {
                console.log(e)
            }
        }
        function addDragListeners() {
            try {
                frameTitle.addEventListener("mousedown", startDrag, false);
                window.addEventListener("mouseup", stopDrag, false);
                window.addEventListener("mousemove", drag, true)
            } catch (e) {
                console.log(e)
            }
        }
        function removeDragListeners() {
            try {
                frameTitle.removeEventListener("mousedown", startDrag, false);
                window.removeEventListener("mouseup", stopDrag, false);
                window.removeEventListener("mousemove", drag, true)
            } catch (e) {
                console.log(e)
            }
        }
        function onWinResize(e) {
            setMaxDimensions();
            if (overlayAttr.isMinimize) {
                var vp = getViewPortSize();
                overlayWrapper.style.top = (vp.height - 45) + "px";
                overlayWrapper.style.left = (vp.width - 220) + "px"
            }
        }
        function preventSelection(e) {
            e.preventDefault();
            return false
        }
        function onScroll(e) {
            if (timer) {
                clearInterval(timer);
                timer = null
            }
            timer = setTimeout(makeFrameOpaque, 200);
            overlayWrapper.style.opacity = 0.7
        }
        function makeFrameOpaque() {
            var prop = {
                duration: 500,
                element: overlayWrapper,
                prop: {
                    opacity: 1
                }
            };
            animateTo(prop)
        }
        function animateTo(opt, callback) {
            try {
                var from = {};
                for (var i in opt.prop) {
                    if (opt.prop.hasOwnProperty(i)) {
                        var suffix = opt.element.style[i].match(/\D{2}/);
                        suffix = (suffix) ? suffix[0] : 0;
                        from[i] = {
                            val: parseFloat(opt.element.style[i]),
                            suffix: suffix
                        }
                    }
                }
                animate({
                    callback: callback,
                    duration: opt.duration || 1000,
                    delta: makeEaseOut(circ),
                    step: function(delta) {
                        for (var i in opt.prop) {
                            if (opt.prop.hasOwnProperty(i)) {
                                var dir = (from[i].val > opt.prop[i]) ? -1 : 1;
                                opt.element.style[i] = parseFloat(from[i].val + (dir * Math.abs((from[i].val - opt.prop[i]) * delta))) + from[i].suffix
                            }
                        }
                    }
                })
            } catch (e) {
                console.log(e)
            }
        }
        function makeEaseOut(delta) {
            return function(progress) {
                return 1 - delta(1 - progress)
            };
        }
        function circ(progress) {
            return 1 - Math.sin(Math.acos(progress))
        }
        function animate(opts) {
            var start = new Date(),
                id = setInterval(function() {
                    var timePassed = new Date() - start,
                        progress = timePassed / opts.duration;
                    if (progress > 1) progress = 1;
                    var delta = opts.delta(progress);
                    opts.step(delta);
                    if (progress == 1) {
                        clearInterval(id);
                        if (opts.callback) {
                            opts.callback()
                        }
                    }
                }, 10)
        }
        function resize(width, height) {
            width = (width > overlayAttr.dimensions.minWidth) ? width : overlayAttr.dimensions.minWidth;
            height = (height > overlayAttr.dimensions.minHeight) ? height : overlayAttr.dimensions.minHeight;
            width = (width < overlayAttr.dimensions.maxWidth) ? width : overlayAttr.dimensions.maxWidth;
            height = (height < overlayAttr.dimensions.maxHeight) ? height : overlayAttr.dimensions.maxHeight;
            overlayAttr.dimensions.width = parseFloat(width);
            overlayAttr.dimensions.height = parseFloat(height);
            setDimensions()
        }
        function requestChatEnd() {
            sendMsg(getMsgJSON("endChat", null, "closeFrame"));
            overlayWrapper.style.display = "none";
            setTimeout(function() {
                if (frame) {
                    closeFrame()
                }
            }, 500)
        }
        function closeFrame() {
            var img = new Image(),
                src = overlayAttr.src;
            src = src.replace("cmd=file", "cmd=windowUnloaded");
            img.src = src;
            removeUIListeners();
            overlayWrapper.parentNode.removeChild(overlayWrapper);
            frame = null
        }
        function minimize() {
            var vp = getViewPortSize();
            setDialogMode("min");
            switch (overlayAttr.barLocation) {
            case "BR":
                var prop = {
                    duration: 300,
                    element: overlayWrapper,
                    prop: {
                        top: vp.height - 45,
                        left: vp.width - 220,
                        height: 30,
                        width: 200
                    }
                };
                animateTo(prop, hideFrame);
                break
            }
        }
        function hideFrame() {
            frame.style.display = "none"
        }
        function maximize() {
            frame.style.display = "block";
            setDialogMode("max");
            var prop = {
                duration: 300,
                element: overlayWrapper,
                prop: {
                    top: parseFloat(overlayAttr.top),
                    left: parseFloat(overlayAttr.left),
                    height: overlayAttr.dimensions.height,
                    width: overlayAttr.dimensions.width
                }
            };
            animateTo(prop, setDimensions)
        }
        function setDialogMode(mod) {
            switch (mod) {
            case "min":
                overlayAttr.isMinimize = true;
                resizeBtn.style.display = "none";
                minMaxBtn.className = "maxBtn";
                minMaxBtn.removeEventListener("click", minimize);
                minMaxBtn.addEventListener("click", maximize);
                window.removeEventListener("scroll", onScroll, false);
                removeDragListeners();
                break;
            case "max":
                overlayAttr.isMinimize = false;
                resizeBtn.style.display = "block";
                minMaxBtn.className = "minBtn";
                minMaxBtn.addEventListener("click", minimize);
                minMaxBtn.removeEventListener("click", maximize);
                window.addEventListener("scroll", onScroll, false);
                addDragListeners();
                break
            }
        }
        function getViewPortSize() {
            var e = window,
                a = 'inner';
            if (!('innerWidth' in window)) {
                a = 'client';
                e = document.documentElement || document.body
            }
            return {
                width: e[a + 'Width'],
                height: e[a + 'Height']
            };
        }
        function popOut() {
            try {
                var suffix = (overlayAttr.src.indexOf("?") == -1) ? "?pop_out=true" : "&pop_out=true";
                closeFrame();
                overlayAttr.win = window.open(overlayAttr.src + suffix, "chatWin", "height=" + overlayAttr.dimensions.height + ",width=" + overlayAttr.dimensions.width + ",modal=yes,alwaysRaised=yes")
            } catch (e) {
                console.log(e)
            }
        }
        function getMaxZIndex() {
            try {
                return 2147483647
            } catch (e) {
                console.log(e);
                return 1000
            }
        }
        function startResize(e) {
            isResizing = true;
            overlayWrapper.querySelector(".resizeMsk").style.display = "block";
            document.addEventListener("selectstart", preventSelection)
        }
        function stopResize(e) {
            if (isResizing) {
                isResizing = false;
                overlayWrapper.querySelector(".resizeMsk").style.display = "none";
                document.removeEventListener("selectstart", preventSelection)
            }
        }
        function onResize(e) {
            if (isResizing) {
                var top = parseInt(overlayWrapper.style.top, 10),
                    left = parseInt(overlayWrapper.style.left, 10);
                resize(e.clientX - left + 5, e.clientY - top + 5)
            }
        }
        function startDrag(e) {
            if (e.srcElement.parentNode.id != "LP_FRAME_TITLE") {
                overlayWrapper.querySelector(".resizeMsk").style.display = "block";
                overlayAttr.viewPort = getViewPortSize();
                overlayAttr.offsetX = e.offsetX;
                overlayAttr.offsetY = e.offsetY;
                isDragging = true;
                overlayWrapper.className = "LP_DRAGGED_BOX_SHADOW";
                document.addEventListener("selectstart", preventSelection);
                overlayWrapper.style.top = (e.clientY - overlayAttr.offsetY - 1) + "px";
                overlayWrapper.style.left = (e.clientX - overlayAttr.offsetX - 1) + "px"
            }
        }
        function stopDrag(e) {
            if (isDragging) {
                var top = (e.clientY - overlayAttr.offsetY - 1),
                    left = (e.clientX - overlayAttr.offsetX - 1);
                overlayWrapper.querySelector(".resizeMsk").style.display = "none";
                isDragging = false;
                overlayWrapper.className = "LP_UNSELECTABLE_TXT";
                document.removeEventListener("selectstart", preventSelection);
                if (overlayAttr.viewPort.height > top + overlayAttr.dimensions.height && top > 0) {
                    overlayWrapper.style.top = top + "px"
                }
                if (overlayAttr.viewPort.width > left + overlayAttr.dimensions.width && left > 0) {
                    overlayWrapper.style.left = left + "px"
                }
                overlayAttr.top = parseFloat(overlayWrapper.style.top);
                overlayAttr.left = parseFloat(overlayWrapper.style.left)
            }
        }
        function drag(e) {
            if (isDragging) {
                var top = (e.clientY - overlayAttr.offsetY),
                    left = (e.clientX - overlayAttr.offsetX);
                if ((overlayAttr.viewPort.height > top + overlayAttr.dimensions.height && top > 0) || (top < overlayAttr.top && top > 0)) {
                    overlayWrapper.style.top = top + "px"
                }
                if ((overlayAttr.viewPort.width > left + overlayAttr.dimensions.width && left > 0) || (left < overlayAttr.left && left > 0)) {
                    overlayWrapper.style.left = left + "px"
                }
            }
        }
        function loadStyle(path) {
            try {
                var link = document.createElement("LINK");
                link.href = path;
                link.type = "text/css";
                link.rel = "stylesheet";
                link.addEventListener("load", function() {
                    overlayAttr.styleLoaded = true;
                    if (overlayAttr.pending) {
                        renderOverlay()
                    }
                });
                document.getElementsByTagName("head")[0].appendChild(link)
            } catch (e) {
                console.log(e)
            }
        }
        function setMaxDimensions() {
            var v = getViewPortSize(),
                padding = (overlayAttr.dimensions.titleHeight * 2);
            overlayAttr.dimensions.maxHeight = v.height - padding - overlayAttr.top;
            overlayAttr.dimensions.maxWidth = v.width - overlayAttr.left - padding
        }
        function isFrameOpen() {
            if (window.top != window.self && parent.document.getElementById("LP_CHAT_DIALOG")) {
                return true
            } else {
                return false
            }
        }
        return {
            init: function(options) {
                if (!isFrameOpen()) {
                    var finalOptions = {};
                    finalOptions.server = options.server;
                    finalOptions.protocol = options.protocol || 'http';
                    finalOptions.cssLocation = options.cssLocation || '/hcp/chatWindowSkins/frameChat/css/style.css';
                    finalOptions.skin = options.cssFullLink || finalOptions.protocol + "://" + finalOptions.server + finalOptions.cssLocation;
                    finalOptions.imageLocation = options.imageLocation || '/hcp/chatWindowSkins/frameChat/images';
                    finalOptions.imagesPath = options.imagesPath || finalOptions.protocol + '://' + finalOptions.server + finalOptions.imageLocation;
                    finalOptions.showPopOut = options.showPopOut;
                    init(finalOptions)
                }
            },
            openFrame: function(options) {
                if (!isFrameOpen()) {
                    if (!frame) {
                        var hostDomain = document.location.toString().match(/^https?:\/\/[^/]{1,}/);
                        if (!hostDomain) {
                            console.log("Host origin not found for " + document.location.toString());
                            return
                        }
                        overlayAttr.top = parseFloat(options.top || overlayAttr.top);
                        overlayAttr.left = parseFloat(options.left || overlayAttr.left);
                        options.height = parseFloat(options.height);
                        options.width = parseFloat(options.width);
                        setMaxDimensions();
                        options.height = (options.height < overlayAttr.dimensions.maxHeight) ? options.height : overlayAttr.dimensions.maxHeight;
                        options.width = (options.width < overlayAttr.dimensions.maxWidth) ? options.width : overlayAttr.dimensions.maxWidth;
                        overlayAttr.src = options.src;
                        overlayAttr.dimensions.width = parseFloat(options.width);
                        overlayAttr.dimensions.height = parseFloat(options.height) + overlayAttr.dimensions.titleHeight;
                        overlayAttr.title = options.title || overlayAttr.title;
                        overlayAttr.origin = overlayAttr.src.match(/^https?:\/\/[^/]{1,}/)[0];
                        overlayAttr.hostOrigin = hostDomain[0];
                        if (overlayAttr.styleLoaded) {
                            renderOverlay()
                        } else {
                            overlayAttr.pending = true;
                            renderStandBy()
                        }
                    }
                }
            },
            closeFrame: function() {
                closeFrame()
            },
            resizeFrame: function(width, height) {
                resize(width, height)
            },
            setTitle: function(title) {
                overlayAttr.title = title;
                setDialogUI()
            },
            setStyle: function(cssObj) {}
        }
    })()
}

#8 JavaScript::Eval (size: 45920, repeated: 1)

if (typeof Array.prototype.splice === 'undefined') {
    Array.prototype.splice = function(a, c) {
        var i = 0,
            e = arguments,
            d = this.copy(),
            f = a;
        if (!c) {
            c = this.length - a
        }
        for (i; i < e.length - 2; i++) {
            this[a + i] = e[i + 2]
        }
        for (a; a < this.length - c; a++) {
            this[a + e.length - 2] = d[a - c]
        }
        this.length -= c - e.length + 2;
        return d.slice(f, f + c)
    }
}
function hcArrayStorage() {
    this.idx = 0;
    this.nArr = [];
    this.vArr = []
}
hcArrayStorage.prototype.add = function(n, v, unescD) {
    if (typeof(unescD) == 'undefined') {
        unescD = false
    }
    if (typeof(v) == 'undefined') {
        var temp = n.split('=');
        n = temp[0];
        v = temp[1]
    }
    if (unescD) {
        this.nArr[this.idx] = unescape(n);
        this.vArr[this.idx] = unescape(v)
    } else {
        this.nArr[this.idx] = n;
        this.vArr[this.idx] = v
    }
    this.idx++
};
hcArrayStorage.prototype.size = function() {
    return this.idx
};
hcArrayStorage.prototype.get = function(i) {
    if (typeof(this.nArr[i]) == 'undefined') {
        return ''
    }
    var tmp = escape(this.nArr[i]) + '=' + escape(this.vArr[i]);
    tmp = tmp.replace(/\+/g, "%2B");
    return tmp
};
hcArrayStorage.prototype.getName = function(i) {
    return this.nArr[i]
};
hcArrayStorage.prototype.getValue = function(i) {
    return this.vArr[i]
};
hcArrayStorage.prototype.getValueEsc = function(i) {
    return escape(this.vArr[i])
};
hcArrayStorage.prototype.getByName = function(n) {
    for (var i = 0; i < this.idx; i++) {
        if (this.getName(i) == n) {
            return i
        }
    }
    return -1
};
hcArrayStorage.prototype.remove = function(i) {
    if (typeof(i) == 'undefined' || i == null || typeof(this.nArr[i]) == 'undefined') {
        return
    }
    this.nArr.splice(i, 1);
    this.vArr.splice(i, 1);
    this.idx--
};
hcArrayStorage.prototype.paramLength = function(i) {
    var url = '&' + this.get(i);
    return url.length
};
hcArrayStorage.prototype.fullLength = function() {
    var length = 0;
    for (var i = 0; i < this.idx; i++) {
        length += this.paramLength(i)
    }
    return length
};
hcArrayStorage.prototype.getMaxLengthItem = function() {
    var max = 0,
        maxItemId = -1;
    for (var i = 0; i < this.idx; i++) {
        if (this.paramLength(i) > max) {
            max = this.paramLength(i);
            maxItemId = i
        }
    }
    return maxItemId
};
hcArrayStorage.prototype.clone = function() {
    var cObj = new hcArrayStorage();
    cObj.idx = this.idx;
    for (var i = 0; i < this.idx; i++) {
        cObj.nArr[i] = this.nArr[i];
        cObj.vArr[i] = this.vArr[i]
    }
    return cObj
};

function lpRequest(protocolVer, Url, params, Callback, requireConfirm, maxretries, prunId, lpjson, enc, browser, postAutoConfirm, spImmediateCleanup, partial, part, outOf, forceget, forcePost, encodingBlankUrl, minPost, minPostMaxGets, allowTruncate) {
    this.headLoc = document.getElementsByTagName("head").item(0);
    this.timeStamp = new Date();
    this.callId = this.getCID();
    this.protocolVer = protocolVer;
    this.scriptId = 'lpScriptId' + this.callId;
    this.callbackFunc = Callback;
    this.requireConfirm = requireConfirm;
    this.spImmediateCleanup = spImmediateCleanup;
    this.postAutoConfirm = postAutoConfirm;
    this.params = params;
    this.BaseUrl = Url;
    this.fullUrl = '';
    if (typeof(enc) != 'undefined' && enc != '' && enc != null) {
        this.dataEncoding = enc.toUpperCase()
    } else {
        this.dataEncoding = "UTF-8"
    }
    this.retries = 0;
    this.confirmed = false;
    this.usedget = true;
    this.usedSpecialPost = false;
    this.maxretries = maxretries;
    this.prunId = prunId;
    this.lpjson = lpjson;
    this.browser = browser;
    this.spImmediateCleanup = true;
    if (typeof(partial) == 'undefined') {
        partial = false
    }
    this.partial = partial;
    if (typeof(part) == 'undefined') {
        part = 0
    }
    this.part = part;
    if (typeof(outOf) == 'undefined') {
        outOf = 0
    }
    this.outOf = outOf;
    this.forceget = forceget;
    this.forcePost = forcePost;
    this.encodingBlankUrl = encodingBlankUrl;
    this.minimizePost = minPost;
    this.minimizePostMaxGets = minPostMaxGets;
    this.allowTruncate = allowTruncate
}
lpRequest.prototype.getCID = function() {
    var sKey = lpConnLib.getC('HumanClickKEY'),
        i = 999999999999;
    if (sKey == null) {
        sKey = Math.round(Math.random() * i)
    }
    return sKey + '-' + Math.round(Math.random() * i)
};
lpRequest.prototype.BuildBaseCallUrl = function() {
    var url = this.BaseUrl;
    if (url.indexOf('?') == -1) {
        url += '?'
    } else {
        url += '&'
    }
    url += 'lpCallId=' + this.callId;
    url += '&protV=' + this.protocolVer;
    url += '&' + this.prunId + this.lpjson;
    return url
};
lpRequest.prototype.BuildCallUrl = function(type, maxLn, nolog) {
    var cUrl = this.BuildBaseCallUrl(),
        urlLn = cUrl.length;
    if (type == 'get') {
        if (this.params.size() > 0) {
            for (var i = 0; i < this.params.size(); i++) {
                cUrl += '&' + this.params.get(i)
            }
        }
        urlLn = cUrl.length;
        if (urlLn > maxLn) {
            if (!nolog) {
                lpConnLib.log('BuildCallUrl Cut length:' + urlLn + ' m=' + maxLn, 'WARN', 'EMT')
            }
            cUrl = cUrl.substring(0, maxLn)
        }
    }
    this.fullUrl = cUrl;
    return urlLn
};
lpRequest.prototype.MakeCallByScript = function() {
    this.scriptObj = document.createElement('script');
    this.scriptObj.setAttribute('type', 'text/javascript');
    this.scriptObj.setAttribute('charset', this.dataEncoding);
    this.scriptObj.setAttribute('src', this.fullUrl);
    this.scriptObj.setAttribute('id', this.scriptId);
    this.headLoc.appendChild(this.scriptObj)
};
lpRequest.prototype.removeScriptTag = function() {
    try {
        this.headLoc.removeChild(this.scriptObj)
    } catch (e) {
        lpConnLib.log('removeScript FAILED:' + e, 'ERROR', 'EMT')
    }
};
lpRequest.prototype.clone = function() {
    var cRq = new lpRequest();
    for (var p in this) {
        if (typeof(this[p]) != 'undefined') {
            if (typeof(this[p]) != 'object') {
                cRq[p] = this[p]
            } else if (typeof(this[p]) != 'undefined' && this[p] != null && this[p].constructor == hcArrayStorage) {
                cRq[p] = this[p].clone()
            } else {
                cRq[p] = this[p]
            }
        }
    }
    return cRq
};

function lpConnectionLibrary() {
    this.protocolVer = 20;
    this.garbagePeriod = 10;
    this.gcT = 0;
    this.callTimeoutPeriod = 3 * this.garbagePeriod;
    this.maxurllengthMZ = 2083;
    this.maxurllengthIE = 2083;
    this.postDeleteIfrDelay = 3;
    this.iframeName = 'lpIframeContainer-' + Math.round(1000 * Math.random());
    this.onPostAutoConfirm = true;
    this.queue = [];
    this.partialQueue = [];
    this.fullForPartialQueue = {};
    this.browser = this.BrowserSniff();
    this.maxurlgetlength = 2083;
    this.callCounter = 0;
    this.garbageCollectCounter = 0;
    this.forcedGet = 0;
    this.reconfirmedCalls = 0;
    this.resendCounter = 0;
    this.partialCounter = 0;
    this.lpExecuteErrors = 0;
    this.lpCallbackCnt = 0;
    this.lpjson = 1;
    this.prunId = 'lpjson=';
    this.DebugDisplay = false;
    this.postParams = [];
    this.spPostIframesFree = [];
    this.spPostIframesBusy = []
}
lpConnectionLibrary.prototype.SortQueue = function(a, b) {
    if (a.confirmed == b.confirmed) {
        return a.timeStamp.getTime() - b.timeStamp.getTime()
    }
    if (a.confirmed && !b.confirmed) {
        return -1
    }
    if (!a.confirmed && b.confirmed) {
        return 1
    }
    return 0
};
lpConnectionLibrary.prototype.confirmConnection = function(idList) {
    var tempList = ',' + idList + ',';
    for (var i = 0; i < this.queue.length; i++) {
        var myid = ',' + this.queue[i].callId + ',';
        if (!this.queue[i].confirmed && tempList.indexOf(myid) > -1) {
            this.queue[i].confirmed = true
        }
    }
};
lpConnectionLibrary.prototype.getRequestForCallId = function(callId) {
    for (var i = 0; i < this.queue.length; i++) {
        if (callId == this.queue[i].callId) {
            return this.queue[i]
        }
    }
    return null
};
lpConnectionLibrary.prototype.addToQueue = function(Url, params, Callback, requireConfirm, maxretries, forceget, onPostAutoConfirm, lpjson, dataEncoding, forcePost, specialPost, spImmediateCleanup, encodingBlankUrl, minimizePost, minimizePostMaxGets, allowTruncate) {
    var callType = '',
        postAutoConfirm = false;
    if (typeof(lpjson) != 'undefined') {
        this.lpjson = lpjson
    }
    if (typeof(onPostAutoConfirm) != 'undefined') {
        postAutoConfirm = onPostAutoConfirm
    } else {
        postAutoConfirm = this.onPostAutoConfirm
    }
    if (typeof(encodingBlankUrl) == 'undefined') {
        if (typeof(lpMTagConfig) != 'undefined') {
            encodingBlankUrl = lpMTagConfig.lpProtocol + '://' + lpMTagConfig.lpServer + '/hcp/asp/blankenc.asp'
        } else if (typeof(lpChatConfig) != 'undefined') {
            encodingBlankUrl = lpChatConfig.lpProtocol + '://' + lpChatConfig.lpServer + '/hcp/asp/blankenc.asp'
        }
    }
    this.encodingBlankUrl = encodingBlankUrl;
    if (typeof(spImmediateCleanup) == 'undefined') {
        spImmediateCleanup = true
    }
    var request = new lpRequest(this.protocolVer, Url, params, Callback, requireConfirm, maxretries, this.prunId, this.lpjson, dataEncoding, this.browser, postAutoConfirm, spImmediateCleanup, undefined, 0, 0, forceget, forcePost, encodingBlankUrl, minimizePost, minimizePostMaxGets, allowTruncate);
    if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) != 'undefined') {
        this.DebugDisplay = true
    }
    if (forceget) {
        this.forcedGet++
    }
    var partial = '',
        urlLength = request.BuildCallUrl('get', this.maxurlgetlength, true);
    if (!forcePost && (urlLength < this.maxurlgetlength || forceget)) {
        callType = this.makeTheCall(request, 'get', requireConfirm)
    } else {
        if (typeof(minimizePost) == 'undefined') {
            if (typeof(lpMTagConfig.minimizePost) == 'undefined') {
                minimizePost = false
            } else {
                minimizePost = lpMTagConfig.minimizePost
            }
        }
        var minPostStatus = false;
        if (!forcePost && minimizePost) {
            if (typeof(minimizePostMaxGets) == 'undefined') {
                if (typeof(lpMTagConfig.minimizePostMaxGets) == 'undefined') {
                    minimizePostMaxGets = 3
                } else {
                    minimizePostMaxGets = lpMTagConfig.minimizePostMaxGets
                }
            }
            if (typeof(allowTruncate) == 'undefined') {
                if (typeof(lpMTagConfig.allowTruncate) == 'undefined') {
                    allowTruncate = false
                } else {
                    allowTruncate = lpMTagConfig.allowTruncate
                }
            }
            var origRequest = request.clone();
            this.splitRequestIntoGets(request, origRequest, minimizePostMaxGets, allowTruncate, specialPost, postAutoConfirm, spImmediateCleanup, minimizePostMaxGets, requireConfirm);
            minPostStatus = true
        }
        if (!minPostStatus) {
            if (specialPost) {
                callType = this.makeTheCall(request, 'sp-post', !postAutoConfirm, spImmediateCleanup)
            } else {
                callType = this.makeTheCall(request, 'post', !postAutoConfirm)
            }
        }
    }
    return callType
};
lpConnectionLibrary.prototype.makeTheCall = function(r, pr) {
    pr = pr.toUpperCase();
    var ret, qsize;
    if (pr == 'GET') {
        r.BuildCallUrl('get', this.maxurlgetlength);
        qsize = this.queue.length;
        this.queue[qsize] = r;
        this.queue[qsize].MakeCallByScript();
        if (!r.requireConfirm) {
            this.queue[qsize].confirmed = true
        }
        ret = 'GET'
    } else if (pr == 'POST') {
        r.BuildCallUrl('post', this.maxurlgetlength);
        qsize = this.queue.length;
        this.queue[qsize] = r;
        this.queue[qsize].MakeCallByIframe(this.browser);
        if (r.postAutoConfirm) {
            this.queue[qsize].confirmed = true
        }
        ret = 'POST'
    } else if (pr == 'SP-POST') {
        r.BuildCallUrl('post', this.maxurlgetlength);
        qsize = this.queue.length;
        this.queue[qsize].spImmediateCleanup = r.spImmediateCleanup;
        this.specialPostHandler(r.callId);
        if (r.postAutoConfirm) {
            this.queue[qsize].confirmed = true
        }
        ret = 'POST'
    }
    if (this.DebugDisplay) {
        var cmd = '';
        try {
            cmd = r.params.getValue(r.params.getByName('cmd'));
            if (typeof(cmd) == 'undefined') {
                cmd = r.fullUrl.match(/cmd=.*?&/).toString();
                if (cmd != null && cmd != 'null') {
                    cmd = cmd.replace(/&/g, '')
                }
            }
            cmd = '<strong><span style="color:rgb(255,153,0);">' + cmd + '</span></strong>'
        } catch (e) {}
        lpConnLib.log('Making ' + pr + ' Call id=' + r.callId + ' ' + cmd, 'DEBUG', 'EMT')
    }
    this.callCounter++;
    return ret
};
lpConnectionLibrary.prototype.hasNonLatinChars = function(params) {
    for (var i = 0; i < params.size(); i++) {
        if (params.get(i).indexOf("%u") != -1) {
            return true
        }
    }
    return false
};
lpConnectionLibrary.prototype.BrowserSniff = function() {
    var agt = navigator.userAgent.toLowerCase();
    if (agt.indexOf("safari") != -1) {
        return 'SAFARI'
    }
    if (document.all) {
        var is_opera = (agt.indexOf("opera") != -1);
        if (is_opera) {
            return "OPR"
        } else {
            return "IE"
        }
    }
    if (document.getElementById) {
        var is_ff = (agt.indexOf("firefox") != -1);
        if (is_ff) {
            return "FF"
        }
        return "MOZ"
    }
    return "MOZ"
};
lpConnectionLibrary.prototype.GetCallbackFunc = function(usrCallId) {
    var qSize = this.queue.length;
    for (var i = 0; i < qSize; i++) {
        if (this.queue[i].callId == usrCallId) {
            return this.queue[i].callbackFunc
        }
    }
    return null
};
lpConnectionLibrary.prototype.CleanUpBusySpecialPost = function(callID) {
    if (typeof(callID) == 'undefined') {
        callID = null
    }
    for (var i = 0; i < this.spPostIframesBusy.length; i++) {
        if ((this.spPostIframesBusy[i]['spImmediateCleanup'] && this.spPostIframesBusy[i]['callMade']) || this.spPostIframesBusy[i]['callID'] == callID) {
            this.releaseIframe(this.spPostIframesBusy[i]['callID'])
        }
    }
};
lpConnectionLibrary.prototype.gc = function() {
    lpConnLib.log('GC', 'OK', 'EMT');
    this.queue.sort(this.SortQueue);
    var confirmedCnt = 0,
        i;
    for (i = 0; i < this.queue.length; i++) {
        if (this.queue[i].confirmed) {
            if (this.queue[i].usedget) {
                this.queue[i].removeScriptTag()
            }
            confirmedCnt++
        }
    }
    this.queue.splice(0, confirmedCnt);
    this.garbageCollectCounter++;
    this.CleanUpBusySpecialPost();
    var now = new Date().getTime();
    for (i = 0; i < this.queue.length; i++) {
        if (!this.queue[i].confirmed && (now - this.queue[i].timeStamp.getTime()) > this.callTimeoutPeriod * 1000) {
            if (this.queue[i].retries < this.queue[i].maxretries) {
                this.queue[i].retries++;
                this.callCounter++;
                this.reconfirmedCalls++;
                lpConnLib.log('Retry ' + this.queue[i].retries + '/' + this.queue[i].maxretries + ' cId=' + this.queue[i].callId, 'DEBUG', 'EMT');
                this.queue[i].timeStamp = new Date();
                if (this.queue[i].usedget) {
                    this.queue[i].MakeCallByScript()
                } else {
                    if (this.usedSpecialPost) {
                        this.CleanUpBusySpecialPost(this.queue[i].callId);
                        this.specialPostHandler(this.queue[i].callId)
                    } else {
                        this.queue[i].MakeCallByIframe(this.browser)
                    }
                }
            } else {
                this.queue[i].confirmed = true;
                lpConnLib.log('Timeout for cId=' + this.queue[i].callId, 'DEBUG', 'EMT');
                var lpDataObj = {
                    "ResultSet": {
                        "lpCallId": this.queue[i].callId,
                        "lpCallError": "TIMEOUT"
                    }
                };
                this.UsrCFn(lpDataObj)
            }
        }
    }
};
lpConnectionLibrary.prototype.Process = function(d) {
    if (d == null) {
        lpConnLib.log('Cback No data', 'ERROR', 'EMT');
        return
    }
    this.lpCallbackCnt++;
    var dRS = d.ResultSet;
    d.ServiceInfo = {};
    var dSI = d.ServiceInfo;
    if (dRS.lpCallId == 0 || dRS.lpCallId == null || dRS.lpCallId == '') {
        lpConnLib.log('Cback No Call ID', 'ERROR', 'EMT');
        return
    }
    dSI.requestType = 'REGULAR';
    dSI.resendCall = false;
    dSI.origCallId = dRS.lpCallId;
    if (typeof(dRS.lpData) != 'undefined' && typeof(dRS.lpData) == 'object' && typeof(dRS.lpData[0]) != 'undefined') {
        if (typeof(dRS.lpData[0].TYPE) != 'undefined') {
            dSI.requestType = dRS.lpData[0].TYPE
        }
        if (typeof(dRS.lpData[0].RESEND) != 'undefined') {
            dSI.resendCall = dRS.lpData[0].RESEND
        }
    }
    if (dSI.resendCall) {
        this.resendCounter++
    }
    if (dSI.requestType == 'PARTIAL REQUEST') {
        dRS.lpCallId = dRS.lpCallId + '!' + dRS.lpData[0].PART
    }
    lpConnLib.log('Cback cId=' + dRS.lpCallId, 'DEBUG', 'EMT');
    if (typeof(dRS.lpCallConfirm) == 'undefined' || dRS.lpCallConfirm == '') {
        dRS.lpCallConfirm = dRS.lpCallId
    } else {
        dRS.lpCallConfirm += ',' + dRS.lpCallId
    }
    var req;
    if (dSI.requestType == 'PARTIAL REQUEST' && dSI.resendCall) {
        req = this.fullForPartialQueue[dSI.origCallId];
        delete this.fullForPartialQueue[dSI.origCallId];
        lpConnLib.log('CId=' + dRS.lpCallId + ' Deleted - fullForPartialQueue[' + dSI.origCallId + ']', 'DEBUG', 'EMT')
    } else {
        req = this.getRequestForCallId(dRS.lpCallId);
        if (req != null && req.partial) {
            req = this.fullForPartialQueue[dSI.origCallId]
        }
    }
    if (dSI.requestType != 'PARTIAL REQUEST') {
        if (this.fullForPartialQueue[dSI.origCallId]) {
            delete this.fullForPartialQueue[dSI.origCallId];
            lpConnLib.log('CId=' + dRS.lpCallId + ' Deleted fullForPartialQueue[' + dSI.origCallId + ']', 'DEBUG', 'EMT')
        }
    }
    if (req == null) {
        lpConnLib.log('REQ is NULL callId=' + dSI.origCallId, 'ERROR', 'EMT')
    }
    this.confirmConnection(dRS.lpCallConfirm);
    if (dSI.requestType == 'PARTIAL REQUEST') {
        var callNum, outOfcalls;
        if (typeof(dRS.lpData) != 'undefined' && typeof(dRS.lpData) == 'object') {
            if (typeof(dRS.lpData[0].PART) != 'undefined') {
                callNum = dRS.lpData[0].PART
            }
            if (typeof(dRS.lpData[0].OUTOF) != 'undefined') {
                outOfcalls = dRS.lpData[0].OUTOF
            }
        }
        if (dSI.resendCall) {
            for (var i = (callNum + 1); i <= outOfcalls; i++) {
                var cid = dSI.origCallId + '!' + i;
                delete this.partialQueue[cid]
            }
        } else {
            try {
                var ncId = dSI.origCallId + '!' + (callNum + 1);
                lpConnLib.log('P Call Response recieved  - ' + dRS.lpCallId + ' part=' + callNum + ' outof=' + outOfcalls, 'DEBUG', 'EMT');
                var r = this.partialQueue[ncId];
                if (r != null) {
                    delete this.partialQueue[ncId];
                    if (r.part == r.outOf) {
                        r.callId = this.spPartFromStr(r.callId)
                    }
                    this.makeTheCall(r, 'get')
                } else {
                    if (typeof(dbg) != 'undefined' && dbg.Display) {
                        dbg.Display('P Call NOT found for id=' + ncId, 'ERROR', 'EMT')
                    }
                }
            } catch (e) {
                if (typeof(dbg) != 'undefined' && dbg.Display) {
                    dbg.Display('P Call Proces error for id=' + dRS.lpCallId + ' exception=' + e, 'ERROR', 'EMT')
                }
            }
            return
        }
    }
    if (typeof(dRS.lpJS_Execute) != 'undefined') {
        var d_msg = [];
        for (var MTagI = 0; MTagI < dRS.lpJS_Execute.length; MTagI++) {
            var no_err_flag = true,
                err_msg = '',
                code_id = dRS.lpJS_Execute[MTagI].code_id;
            try {
                eval(dRS.lpJS_Execute[MTagI].js_code);
                if (typeof(lpMTag) != 'undefined' && typeof(lpMTag.tmpCode) != 'undefined' && lpMTag.tmpCode != '') {
                    eval(lpMTag.tmpCode)
                }
            } catch (hcExecError) {
                this.lpExecuteErrors++;
                no_err_flag = false;
                err_msg = hcExecError
            }
            if (typeof(lpMTag) != 'undefined') {
                lpMTag.tmpCode = ''
            }
            if (this.DebugDisplay) {
                if (no_err_flag) {
                    d_msg[d_msg.length] = 'OK Executed snippet=<strong>' + code_id + '</strong><!!>EXEC-OK'
                } else {
                    d_msg[d_msg.length] = 'ERROR Executing snippet=<strong>' + code_id + '</strong> &nbsp #' + err_msg + '#<!!>ERROR'
                }
            }
        }
        if (this.DebugDisplay) {
            lpMTagDebug.DisplayArray(d_msg, 'EMT')
        }
    }
    if (typeof(dRS.lpCallError) != 'undefined') {
        lpConnLib.log('ERR Recieved=' + dRS.lpCallError + ' &nbsp # CallID = ' + dRS.lpCallId + '#', 'ERROR', 'EMT')
    }
    this.UsrCFn(d, req)
};
lpConnectionLibrary.prototype.spPartFromStr = function(str) {
    var temp = str.split('!');
    return temp[0]
};
lpConnectionLibrary.prototype.UsrCFn = function(d, r) {
    var userCallbackFunc = this.GetCallbackFunc(d.ResultSet.lpCallId);
    if (userCallbackFunc != '' && userCallbackFunc != null) {
        var no_err_flag = true,
            err_msg = '';
        try {
            userCallbackFunc(d, r)
        } catch (hcExecError) {
            no_err_flag = false;
            err_msg = hcExecError
        }
        if (no_err_flag) {
            lpConnLib.log('OK Exec User function - ' + d.ResultSet.lpCallId, 'EXEC-OK', 'EMT')
        } else {
            lpConnLib.log('ERROR Exec User function=' + userCallbackFunc + ' &nbsp #' + err_msg + '#', 'ERROR', 'EMT')
        }
    }
};
lpConnectionLibrary.prototype.getC = function(n) {
    var c = document.cookie,
        start = c.indexOf(n + "=");
    if (typeof(n) == 'undefined' || start == -1) {
        return null
    }
    var len = start + n.length + 1;
    if ((!start) && (n != c.substring(0, n.length))) {
        return null
    }
    var end = c.indexOf(";", len);
    if (end == -1) {
        end = c.length
    }
    return unescape(c.substring(len, end))
};
lpConnectionLibrary.prototype.log = function(m, t, s) {
    if (this.DebugDisplay) {
        lpMTagDebug.Display(m, t, s)
    }
};
if (typeof(lpConnLib) == 'undefined') {
    function lpJSLibrary() {}
    var lpJSLib = new lpJSLibrary(),
        lpConnLib = new lpConnectionLibrary();
    lpConnLib.gcT = setInterval('lpConnLib.gc()', lpConnLib.garbagePeriod * 1000)
}
function lpMonitorTag() {
    var c = lpMTagConfig;
    this.maxretries = 3;
    this.maxErrorCnt = 2;
    this.connErrorCnt = 0;
    this.errorDelay = 10;
    if (typeof(c.lpProtocol) == 'undefined') {
        c.lpProtocol = (document.location.toString().indexOf("https:") == 0) ? "https" : "http"
    }
    this.lpURL = c.lpProtocol + '://' + c.lpServer + '/hc/' + c.lpNumber + '/';
    this.lpPageLocation = this.getPageUrl();
    if (typeof(c.lpUseSecureCookies) == 'undefined') {
        c.lpUseSecureCookies = false
    }
    if (typeof(c.sendCookies) == 'undefined') {
        c.sendCookies = true
    }
    if (typeof(c.lpSendCookies) == 'undefined') {
        c.lpSendCookies = false
    }
    this.dCkName = 'LP_DATA_COOKIE';
    this.lpVisitorStatus = 'INSITE_STATUS';
    this.lpCmd = 'mTagKnockPage';
    this.webServerCookie = 'LPNMT_DOMAIN-' + c.lpNumber;
    this.lpPageID = this.getPId();
    this.title = this.getTitle();
    this.referrer = this.getRefr();
    this.lpJavaEnabled = (this.lpIsJavaEnabled() ? 'true' : 'false');
    this.lpLoopTimer = -1;
    this.lpFirstInPage = true;
    this.lpKnockPageRequestDelay = 0;
    this.lpStartPageRequestDelay = 0;
    this.lpFirstInPageRequestDelay = 0;
    this.lpInPageRequestDelay = 30;
    this.lpDelayAfterPost = 10;
    this.lpBrowser = lpConnLib.browser;
    this.lpDataToSend = '';
    if (typeof(c.activePlugin) == 'undefined') {
        c.activePlugin = 'none'
    }
    if (typeof(c.enableActivityMon) != 'undefined') {
        this.actMon = c.enableActivityMon
    } else {
        this.actMon = true
    }
    if (typeof(c.inactivityPeriod) != 'undefined') {
        this.inactPer = c.inactivityPeriod
    } else {
        this.inactPer = 120
    }
    if (typeof(c.actPollingInterval) != 'undefined') {
        this.actPolInt = c.actPollingInterval
    } else {
        this.actPolInt = 3
    }
    this.lastActiveDate = new Date();
    this.cookieRemovedCnt = 0;
    this.prevCookie = '';
    this.splitCookieLeft = '';
    this.events = {
        eventId: 0,
        lstnrs: {},
        fired: [],
        prefix: 'evId_',
        register: function(evName, fn) {
            if (typeof(evName) == 'undefined' || typeof(fn) != 'function') {
                lpConnLib.log('Ev listen has invalid params: evName=[' + evName + ']  fn=[' + fn + ']', 'ERROR', 'EMT-Events');
                return null
            }
            var evId = this.eventId++;
            this.lstnrs[this.prefix + evId] = {
                id: evId,
                name: evName,
                fn: fn
            };
            lpConnLib.log('Ev listen rgstr: evName=[' + evName + ']  fn=[' + fn + ']', 'DEBUG', 'EMT-Events');
            return evId
        },
        unregister: function(id) {
            if (typeof(id) == 'undefined') {
                lpConnLib.log('Ev listen id not spec for unregister', 'ERROR', 'EMT-Events');
                return null
            }
            var ev = this.lstnrs[this.prefix + id];
            if (typeof(ev) == 'undefined') {
                lpConnLib.log('Ev listen id not Found for unregister id=' + id, 'ERROR', 'EMT-Events');
                return false
            } else {
                delete this.lstnrs[this.prefix + id];
                lpConnLib.log('Ev listen id=' + id + ' unregister', 'DEBUG', 'EMT-Events');
                return true
            }
        },
        hasFired: function(evName) {
            if (typeof(evName) == 'undefined' || evName == '*') {
                return this.fired
            }
            var ret = [];
            for (var n = 0; n < this.fired.length; n++) {
                if (this.fired[n].evName == evName) {
                    ret[ret.length] = this.fired[n]
                }
            }
            return ret
        },
        publish: function(evName, pJson) {
            if (typeof(evName) == 'undefined') {
                lpConnLib.log('Ev name not spec for publish', 'ERROR', 'EMT-Events');
                return null
            }
            this.fired[this.fired.length] = {
                evName: evName,
                evData: pJson
            };
            var anyLstnr = false;
            for (var n in this.lstnrs) {
                var l = this.lstnrs[n];
                if (l.name == evName || l.name == '*') {
                    l.fn(evName, pJson);
                    anyLstnr = true;
                    lpConnLib.log('Ev listen=' + n + ' ev=' + evName + ' exec', 'DEBUG', 'EMT-Events')
                }
            }
            return anyLstnr
        }
    }
}
lpMonitorTag.prototype.startActMon = function() {
    if (this.actMon) {
        lpConnLib.log('Start ActMon', 'DEBUG', 'EMT');
        var c = lpMTagConfig;
        c.visitorActive = true;
        if (typeof(c.pageVar) == 'undefined') {
            c.pageVar = []
        }
        c.pageVar[c.pageVar.length] = 'visitorActive=1';
        if (window.attachEvent) {
            document.attachEvent('onmousedown', this.MAct);
            document.attachEvent('onmousemove', this.MAct);
            document.attachEvent('onmouseover', this.MAct);
            window.attachEvent('onresize', this.MAct);
            window.attachEvent('onblur', this.MAct);
            window.attachEvent('onfocus', this.MAct);
            document.attachEvent('onkeydown', this.MAct);
            document.attachEvent('onscroll', this.MAct)
        } else {
            var fn = window.addEventListener;
            fn("mousedown", this.MAct, false);
            fn("mousemove", this.MAct, false);
            fn("mouseover", this.MAct, false);
            fn("scroll", this.MAct, false);
            fn("resize", this.MAct, false);
            fn("blur", this.MAct, false);
            fn("focus", this.MAct, false);
            fn("keydown", this.MAct, false)
        }
        this.actT = setInterval(this.cAct, this.actPolInt * 1000)
    }
};
lpMonitorTag.prototype.getPageUrl = function() {
    var u = document.location.href.toString();
    if (u == null || u == '') {
        u = '__blank__'
    }
    return u
};
lpMonitorTag.prototype.getTitle = function() {
    var title = '';
    if (typeof(document.title) != "undefined" && document.title.length > 0) {
        title = document.title
    }
    return title
};
lpMonitorTag.prototype.getPId = function() {
    return Math.round(Math.random() * 9999999999)
};
lpMonitorTag.prototype.getRefr = function() {
    var referrer = '';
    if (typeof(document.referrer) != "undefined" && document.referrer.length > 0) {
        referrer = document.referrer
    }
    return referrer
};
lpMonitorTag.prototype.MAct = function() {
    lpMTag.lastActiveDate = new Date()
};
lpMonitorTag.prototype.cAct = function() {
    var c = lpMTagConfig,
        cTime = new Date().getTime(),
        lastActTime = lpMTag.lastActiveDate.getTime(),
        actSt = c.visitorActive;
    actSt = (cTime - lastActTime) <= (lpMTag.inactPer * 1000);
    if (actSt != c.visitorActive) {
        lpConnLib.log('Visitor Act STATUS= ' + (actSt ? '1' : '0'), 'DEBUG', 'EMT');
        c.pageVar[c.pageVar.length] = 'visitorActive=' + (actSt ? '1' : '0');
        c.visitorActive = actSt
    }
};
lpMonitorTag.prototype.removeUrlParameter = function(url, p) {
    var pnt = url.indexOf('&' + p + '=');
    if (pnt > -1) {
        var tmp = url.substring(pnt + ('&' + p + '=').length),
            endpnt = tmp.indexOf('&');
        if (endpnt > -1) {
            url = url.substring(0, pnt) + tmp.substring(endpnt)
        } else {
            url = url.substring(0, pnt)
        }
    }
    return url
};
lpMonitorTag.prototype.addFirstPartyCookies = function(url, cmd, params) {
    var c = lpMTagConfig;
    if (typeof(cmd) == 'undefined') {
        var pnt = url.indexOf('&cmd=');
        if (pnt > -1) {
            var tmp = url.substring(pnt + 5);
            if (tmp.indexOf('&') > -1) {
                tmp = tmp.substring(0, tmp.indexOf('&'))
            }
            cmd = tmp
        } else {
            cmd = ''
        }
    }
    if (typeof(c.useFirstParty) != 'undefined' && c.useFirstParty || cmd == 'mTagKnockPage') {
        var vid = lpConnLib.getC(c.FPC_VID_NAME ? c.FPC_VID_NAME : c.lpNumber + '-VID'),
            skey = lpConnLib.getC(c.FPC_SKEY_NAME ? c.FPC_SKEY_NAME : c.lpNumber + '-SKEY'),
            contId = lpConnLib.getC(c.FPC_CONT_NAME ? c.FPC_CONT_NAME : 'HumanClickSiteContainerID_' + c.lpNumber);
        if (url.indexOf('?') == -1) {
            url += '?'
        }
        if (url.indexOf('&visitor=') > -1) {
            lpConnLib.log('FPC Found &v in url - remove', 'DEBUG', 'EMT');
            url = this.removeUrlParameter(url, 'visitor')
        }
        if (url.indexOf('&msessionkey=') > -1) {
            lpConnLib.log('FPC Found &m in the url - remove', 'DEBUG', 'EMT');
            url = this.removeUrlParameter(url, 'msessionkey')
        }
        if (url.indexOf('&siteContainer=') > -1) {
            lpConnLib.log('FPC Found &s in the url - remove', 'DEBUG', 'EMT');
            url = this.removeUrlParameter(url, 'siteContainer')
        }
        if (typeof(params) != 'undefined') {
            var idx;
            idx = params.getByName('visitor');
            if (idx > -1) {
                lpConnLib.log('FPC visitor - remove', 'DEBUG', 'EMT');
                params.remove(idx)
            }
            idx = params.getByName('msessionkey');
            if (idx > -1) {
                lpConnLib.log('FPC msessionkey - remove', 'DEBUG', 'EMT');
                params.remove(idx)
            }
            idx = params.getByName('siteContainer');
            if (idx > -1) {
                lpConnLib.log('FPC siteContainer - remove', 'DEBUG', 'EMT');
                params.remove(idx)
            }
        }
        if (vid != null) {
            url += '&visitor=' + vid
        }
        if (skey != null) {
            url += '&msessionkey=' + skey
        }
        if (contId != null) {
            if (cmd == 'mTagKnockPage' || (typeof(c.allowThirdPartyByServer) != 'undefined' && !c.allowThirdPartyByServer)) {
                url += '&siteContainer=' + contId
            }
        }
    }
    return url
};
lpMonitorTag.prototype.mtagAddReqToQueue = function(req) {
    this.mtagAddToQueue(req.BaseUrl, req.params, req.callbackFunc, req.requireConfirm, req.maxretries, req.forceget, req.postAutoConfirm, req.lpjson, req.dataEncoding, req.forcePost, req.usedSpecialPost, req.spImmediateCleanup, req.encodingBlankUrl, req.minimizePost, req.minimizePostMaxGets, req.allowTruncate)
};
lpMonitorTag.prototype.mtagAddToQueue = function(Url, params, Callback, requireConfirm, maxretries, forceget, onPostAutoConfirm, lpjson, dataEncoding, forcePost, specialPost, spImmediateCleanup, encodingBlankUrl, minimizePost, minimizePostMaxGets, allowTruncate) {
    var cmd = params.getValue(params.getByName('cmd'));
    Url = this.addFirstPartyCookies(Url, cmd, params);
    Url = this.addStatCmdToUrl(Url, params);
    params = this.avoidPost(Url, params, cmd);
    return lpConnLib.addToQueue(Url, params, Callback, requireConfirm, maxretries, forceget, onPostAutoConfirm, lpjson, dataEncoding, forcePost, specialPost, spImmediateCleanup, encodingBlankUrl, minimizePost, minimizePostMaxGets, allowTruncate)
};
lpMonitorTag.prototype.addStatCmdToUrl = function(url, params) {
    var indx, value = '';
    if (url.indexOf('?') == -1) {
        url += '?'
    }
    indx = params.getByName('site');
    if (indx != -1) {
        value = params.getValue(indx);
        url += '&site=' + value;
        params.remove(indx)
    }
    indx = params.getByName('cmd');
    if (indx != -1) {
        value = params.getValue(indx);
        url += '&cmd=' + value;
        params.remove(indx)
    }
    return url
};
lpMonitorTag.prototype.avoidPost = function(Url, params, cmd) {
    var c = lpMTagConfig,
        avoidPost = this.getAPProps(),
        splitCookie = c.sgpemtSplitCookie,
        splitCookieMinDelta = 0;
    if (splitCookie) {
        splitCookieMinDelta = c.sgpemtSplitCookieMinDelta
    }
    if (!avoidPost.avoidPost && !splitCookie) {
        return params
    }
    var r = new lpRequest(lpConnLib.protocolVer, Url, params, null, false, 0, lpConnLib.prunId, lpConnLib.lpjson, 'UTF-8', lpConnLib.browser, false, true, undefined, 0, 0, false, false),
        baseUrl = r.BuildBaseCallUrl(),
        urlLength = baseUrl.length + params.fullLength() + 1,
        orgCk = '';
    if (urlLength > lpConnLib.maxurlgetlength) {
        var indx = params.getByName('cookie');
        if (indx > -1) {
            lpConnLib.log('AP ' + avoidPost.avoidPost + ' SC ' + splitCookie + ' Limit ' + urlLength + ': drop cookies', 'DEBUG', 'EMT');
            orgCk = params.getValue(indx);
            params.remove(indx);
            this.cookieRemovedCnt++;
            if (this.cookieRemovedCnt > 1) {
                lpConnLib.log('AP set sendCookies to FALSE', 'DEBUG', 'EMT');
                lpMTagConfig.sendCookies = false
            }
        } else {
            lpConnLib.log('AP Limit ' + urlLength + ': cookies not FOUND', 'DEBUG', 'EMT')
        }
        urlLength = baseUrl.length + params.fullLength() + 1;
        if (urlLength > (lpConnLib.maxurlgetlength - splitCookieMinDelta)) {
            lpConnLib.log('AP Limit ' + urlLength + ': after drop cookies - trim', 'DEBUG', 'EMT');
            params = this.trimParam(params, 'pageWindowName', avoidPost.maxPageWinNameLength);
            urlLength = baseUrl.length + params.fullLength() + 1;
            if (urlLength > lpConnLib.maxurlgetlength) {
                lpConnLib.log('AP Limit ' + urlLength + ' after trim pageWindowName ', 'DEBUG', 'EMT')
            } else {
                return this.prSplitC(cmd, params, urlLength, orgCk)
            }
            params = this.trimParam(params, 'title', avoidPost.emtMaxTitleLength);
            urlLength = baseUrl.length + params.fullLength() + 1;
            if (urlLength > (lpConnLib.maxurlgetlength - splitCookieMinDelta)) {
                lpConnLib.log('AP Limit ' + urlLength + ' after trim title ', 'DEBUG', 'EMT');
                params = this.trimParam(params, 'referrer', avoidPost.emtMaxReferLength)
            } else {
                return this.prSplitC(cmd, params, urlLength, orgCk)
            }
            urlLength = baseUrl.length + params.fullLength() + 1;
            if (urlLength > (lpConnLib.maxurlgetlength - splitCookieMinDelta)) {
                lpConnLib.log('AP Limit ' + urlLength + 'trim page', 'DEBUG', 'EMT');
                params = this.trimParam(params, 'page', avoidPost.emtMaxUrlLength)
            } else {
                return this.prSplitC(cmd, params, urlLength, orgCk)
            }
            urlLength = baseUrl.length + params.fullLength() + 1;
            if (urlLength > (lpConnLib.maxurlgetlength - splitCookieMinDelta)) {
                lpConnLib.log('AP Limit ' + urlLength, 'DEBUG', 'EMT');
                params = this.trimParam(params, 'title', avoidPost.emtMinTitleLength)
            } else {
                return this.prSplitC(cmd, params, urlLength, orgCk)
            }
            urlLength = baseUrl.length + params.fullLength() + 1;
            if (urlLength > (lpConnLib.maxurlgetlength - splitCookieMinDelta)) {
                lpConnLib.log('AP Limit ' + urlLength, 'DEBUG', 'EMT');
                params = this.trimParam(params, 'referrer', avoidPost.emtMinReferLength)
            } else {
                return this.prSplitC(cmd, params, urlLength, orgCk)
            }
            urlLength = baseUrl.length + params.fullLength() + 1;
            if (urlLength > (lpConnLib.maxurlgetlength - splitCookieMinDelta)) {
                lpConnLib.log('AP Limit ' + urlLength, 'DEBUG', 'EMT');
                params = this.trimParam(params, 'page', avoidPost.emtMinUrlLength)
            } else {
                return this.prSplitC(cmd, params, urlLength, orgCk)
            }
            urlLength = baseUrl.length + params.fullLength() + 1;
            if (urlLength > (lpConnLib.maxurlgetlength - splitCookieMinDelta)) {
                lpConnLib.log('AP over limit  ' + urlLength + ': DO POST', 'DEBUG', 'EMT');
                var idx = params.getByName('page');
                if (idx > -1) {
                    params.remove(idx);
                    params.add('page', this.lpPageLocation)
                }
                idx = params.getByName('referrer');
                if (idx > -1) {
                    params.remove(idx);
                    params.add('referrer', this.referrer)
                }
                idx = params.getByName('title');
                if (idx > -1) {
                    params.remove(idx);
                    params.add('title', this.title)
                }
                if (orgCk != '') {
                    this.cookieRemovedCnt--;
                    params.add('cookie', orgCk)
                }
                return params
            } else {
                return this.prSplitC(cmd, params, urlLength, orgCk)
            }
        } else {
            return this.prSplitC(cmd, params, urlLength, orgCk)
        }
    } else {
        return this.prSplitC(cmd, params, urlLength, orgCk)
    }
};
lpMonitorTag.prototype.prSplitC = function(cmd, params, urlLength, orgCk) {
    var d = lpMTagDebug;
    if (!lpMTagConfig.sgpemtSplitCookie || (cmd != 'mTagStartPage' && cmd != 'mTagInPage' && cmd != 'mTagUDEsend')) {
        lpConnLib.log('SplitCookie ' + lpMTagConfig.sgpemtSplitCookie + ' cmd ' + cmd, 'DEBUG', 'EMT');
        return params
    }
    var chunk = '',
        sizeLeft = lpConnLib.maxurlgetlength - urlLength - "&sc=".length;
    if (typeof(orgCk) == 'undefined' || orgCk == '') {
        if (this.splitCookieLeft.length == 0) {
            lpConnLib.log('SplitCookie - nothing to send - DONE', 'DEBUG', 'EMT');
            return params
        }
        sizeLeft = this.adjustForSpChars(this.splitCookieLeft, sizeLeft);
        chunk = this.splitCookieLeft.substr(0, sizeLeft);
        this.splitCookieLeft = this.splitCookieLeft.substr(sizeLeft);
        var pname = 'ac';
        if (this.splitCookieLeft == '') {
            pname = 'ec'
        }
        lpConnLib.log('SC send ' + pname + ' chunk size=' + chunk.length + ' left=' + this.splitCookieLeft.length, 'DEBUG', 'EMT');
        params.add(pname, unescape(chunk))
    } else {
        var escCk = escape(orgCk);
        sizeLeft = this.adjustForSpChars(escCk, sizeLeft);
        chunk = escCk.substr(0, sizeLeft);
        params.add('sc', unescape(chunk));
        lpConnLib.log('SC send sc chunk size=' + chunk.length + ' total size=' + orgCk.length, 'DEBUG', 'EMT');
        this.splitCookieLeft = escCk.substr(sizeLeft)
    }
    return params
};
lpMonitorTag.prototype.adjustForSpChars = function(escCk, sizeLeft) {
    if (escCk.charAt(sizeLeft - 1) == '%') {
        return sizeLeft - 1
    }
    if (escCk.charAt(sizeLeft - 2) == '%') {
        return sizeLeft - 2
    }
    var chunkSlice = escCk.substr(0, sizeLeft).substr(-6),
        unicodeIdx = chunkSlice.lastIndexOf("%u");
    if (unicodeIdx > 0) {
        return sizeLeft - (chunkSlice.length - unicodeIdx)
    }
    return sizeLeft
};
lpMonitorTag.prototype.trimParam = function(p, name, maxSize) {
    var str = '',
        indx = p.getByName(name);
    if (indx > -1) {
        str = p.getValueEsc(indx)
    }
    if (str.length > maxSize) {
        lpConnLib.log('trimParam ' + name.toUpperCase() + ' length ' + str.length + ' to ' + maxSize, 'DEBUG', 'EMT');
        str = this.trimLength(str, maxSize);
        p.remove(indx);
        if (str != '') {
            p.add(name, str, true)
        }
    }
    return p
};
lpMonitorTag.prototype.getAPProps = function() {
    var ret = {
        avoidPost: false
    };
    var c = lpMTagConfig;
    if (c.emtAvoidPOST || (typeof(c.emtAvoidPOST) == 'undefined' && c.sgpemtAvoidPOST)) {
        ret.avoidPost = true
    } else {
        return ret
    }
    if (typeof(c.emtMaxUrlLength) != 'undefined') {
        ret.emtMaxUrlLength = c.emtMaxUrlLength
    } else {
        if (typeof(c.sgpemtMaxUrlLength) == 'undefined') {
            ret.emtMaxUrlLength = 500
        } else {
            ret.emtMaxUrlLength = c.sgpemtMaxUrlLength
        }
    }
    if (typeof(c.emtMinUrlLength) != 'undefined') {
        ret.emtMinUrlLength = c.emtMinUrlLength
    } else {
        if (typeof(c.sgpemtMinUrlLength) == 'undefined') {
            ret.emtMinUrlLength = 100
        } else {
            ret.emtMinUrlLength = c.sgpemtMinUrlLength
        }
    }
    if (typeof(c.emtMaxReferLength) != 'undefined') {
        ret.emtMaxReferLength = c.emtMaxReferLength
    } else {
        if (typeof(c.sgpemtMaxReferLength) == 'undefined') {
            ret.emtMaxReferLength = 300
        } else {
            ret.emtMaxReferLength = c.sgpemtMaxReferLength
        }
    }
    if (typeof(c.emtMinReferLength) != 'undefined') {
        ret.emtMinReferLength = c.emtMinReferLength
    } else {
        if (typeof(c.sgpemtMinReferLength) == 'undefined') {
            ret.emtMinReferLength = 100
        } else {
            ret.emtMinReferLength = c.sgpemtMinReferLength
        }
    }
    if (typeof(c.emtMaxTitleLength) != 'undefined') {
        ret.emtMaxTitleLength = c.emtMaxTitleLength
    } else {
        if (typeof(c.sgpemtMaxTitleLength) == 'undefined') {
            ret.emtMaxTitleLength = 100
        } else {
            ret.emtMaxTitleLength = c.sgpemtMaxTitleLength
        }
    }
    if (typeof(c.emtMinTitleLength) != 'undefined') {
        ret.emtMinTitleLength = c.emtMinTitleLength
    } else {
        if (typeof(c.sgpemtMinTitleLength) == 'undefined') {
            ret.emtMinTitleLength = 50
        } else {
            ret.emtMinTitleLength = c.sgpemtMinTitleLength
        }
    }
    if (typeof(c.maxPageWinNameLength) != 'undefined') {
        ret.maxPageWinNameLength = c.maxPageWinNameLength
    }
    return ret
};
lpMonitorTag.prototype.lpSetCallParams = function(lpCmd, extra) {
    var c = lpMTagConfig,
        i, tmpData, cPrm = new hcArrayStorage();
    cPrm.add('site', c.lpNumber);
    cPrm.add('cmd', lpCmd);
    if (lpCmd != 'mTagKnockPage') {
        cPrm.add('page', this.lpPageLocation)
    }
    cPrm.add('id', this.lpPageID);
    cPrm.add('javaSupport', this.lpJavaEnabled);
    cPrm.add('visitorStatus', this.lpVisitorStatus);
    if (lpCmd == 'mTagInPage') {
        var data = lpConnLib.getC(this.dCkName);
        if (data != '' && data != null) {
            this.lpDeleteCookie(this.dCkName);
            cPrm.add(data)
        }
    }
    if (lpCmd != 'mTagKnockPage') {
        if (typeof(c.defaultChatInvite) != 'undefined') {
            cPrm.add('defCInvite', c.defaultChatInvite)
        }
        if (typeof(c.defaultVoiceInvite) != 'undefined') {
            cPrm.add('defVInvite', c.defaultVoiceInvite)
        }
        if (typeof(c.defaultMultiChannelInvite) != 'undefined') {
            cPrm.add('defMCInvite', c.defaultMultiChannelInvite)
        }
        if (typeof(c.defaultInvite) != 'undefined') {
            cPrm.add('defInvite', c.defaultInvite)
        }
        if (typeof(c.cobrowseEnabled) != 'undefined') {
            if (typeof(c.lpActivePlugin) == 'undefined') {
                c.lpActivePlugin = 'none'
            }
            cPrm.add('activePlugin', c.lpActivePlugin);
            cPrm.add('cobrowse', 'true');
            if (typeof(c.pageWindowName) != 'undefined') {
                cPrm.add('pageWindowName', c.pageWindowName)
            } else {
                var name = '';
                try {
                    if (top && typeof(top.document) != 'undefined') {
                        name = '' + top.name
                    }
                } catch (e) {
                    name = ''
                }
                if (name != '') {
                    if (escape(name).length > c.maxPageWinNameLength) {
                        name = this.trimLength(name, c.maxPageWinNameLength)
                    }
                    cPrm.add('pageWindowName', name)
                }
            }
            if (typeof(c.lpOperatorPageType) != "undefined") {
                cPrm.add('cobrowsetitle', c.lpOperatorPageType)
            }
            if (typeof(c.lpOperatorPageUrl) != "undefined") {
                cPrm.add('cobrowseurl', c.lpOperatorPageUrl)
            }
        }
    }
    if (lpCmd == 'mTagStartPage' || lpCmd == 'mTagInPage') {
        if (typeof(c.pageVar) != 'undefined' && c.pageVar.length > 0) {
            for (i = 0; i < c.pageVar.length; i++) {
                cPrm.add('PV!' + c.pageVar[i], undefined, true);
                this.addUDESt('page', c.pageVar[i])
            }
            c.pageVar = []
        }
        if (typeof(c.sessionVar) != 'undefined' && c.sessionVar.length > 0) {
            for (i = 0; i < c.sessionVar.length; i++) {
                cPrm.add('SV!' + c.sessionVar[i], undefined, true);
                this.addUDESt('session', c.sessionVar[i])
            }
            c.sessionVar = []
        }
        if (typeof(c.visitorVar) != 'undefined' && c.visitorVar.length > 0) {
            for (i = 0; i < c.visitorVar.length; i++) {
                cPrm.add('VV!' + c.visitorVar[i], undefined, true);
                this.addUDESt('visitor', c.visitorVar[i])
            }
            c.visitorVar = []
        }
    }
    if (lpCmd == 'mTagKnockPage') {
        if (typeof(c.dynButton) != 'undefined' && c.dynButton.length > 0) {
            var dbut = '';
            for (i = 0; i < c.dynButton.length; i++) {
                if (i > 0) {
                    dbut += '#'
                }
                dbut += c.dynButton[i].name + '|';
                if (typeof(c.dynButton[i].ovr) != 'undefined') {
                    dbut += c.dynButton[i].ovr + '|'
                } else {
                    dbut += 'null|'
                }
                if (typeof(c.dynButton[i].pid) != 'undefined') {
                    dbut += c.dynButton[i].pid + '|'
                } else {
                    dbut += 'null|'
                }
            }
            cPrm.add('dbut', dbut)
        }
    }
    if (typeof(c.sendSnippets) != 'undefined') {
        cPrm.add('sendSnippets', c.sendSnippets);
        c.sendSnippets = undefined
    }
    if (typeof(extra) != 'undefined') {
        tmpData = extra.split('&');
        for (i = 0; i < tmpData.length; i++) {
            if (tmpData[i] != '') {
                cPrm.add(tmpData[i])
            }
        }
    }
    if (lpCmd != 'mTagKnockPage') {
        if (this.lpDataToSend != '') {
            tmpData = this.lpDataToSend.split('&');
            for (i = 0; i < tmpData.length; i++) {
                if (tmpData[i] != '') {
                    cPrm.add(tmpData[i])
                }
            }
            this.lpDataToSend = ''
        }
    }
    if (lpCmd != 'mTagKnockPage' && lpCmd != 'mTagInPage') {
        if (this.title != '') {
            cPrm.add('title', this.title)
        }
        if (this.referrer != '') {
            cPrm.add('referrer', this.referrer)
        }
    }
    if (lpCmd != 'mTagKnockPage' && c.lpSendCookies && c.sendCookies) {
        var cookies = null;
        if (!c.cobrowseEnabled) {
            cPrm.add('cobrowse', 'true')
        }
        if (lpCmd == 'mTagStartPage') {
            if (typeof(c.GetPageCookies) == 'function') {
                cookies = c.GetPageCookies()
            } else {
                cookies = document.cookie
            }
            if ((typeof(cookies) == 'undefined') || cookies == null) {
                cookies = ''
            }
            if (cookies != '' && this.prevCookie != cookies) {
                cPrm.add('cookie', cookies);
                this.prevCookie = cookies
            }
        }
    }
    if (typeof(c.addToCallParams) == 'function') {
        cPrm = c.addToCallParams(lpCmd, cPrm)
    }
    return cPrm
};
lpMonitorTag.prototype.lpIsJavaEnabled = function() {
    var rc = false,
        n = navigator,
        agent = n.appName,
        ver = parseInt(n.appVersion);
    if (agent == "Microsoft Internet Explorer") {
        if ((ver >= 4) && n.javaEnabled()) {
            rc = true
        }
    } else {
        for (var i = 0; i < n.plugins.length; i++) {
            rc = rc || (n.plugins[i].name.toUpperCase().indexOf("JAVA") != -1)
        }
    }
    return rc
};
lpMonitorTag.prototype.trimLength = function(str, max) {
    if (str.length > max && max > -1) {
        return str.substring(0, max)
    }
    return str
};
lpMonitorTag.prototype.lpFixProtocol = function(str) {
    if ((str != null) && (str.indexOf('http:') == 0) && (lpMTagConfig.lpProtocol == 'https')) {
        return lpMTagConfig.lpProtocol + str.substring(4)
    }
    return str
};
lpMonitorTag.prototype.lpFormData = function(fName, useC, fL, excl, prfx) {
    if (typeof(useC) == 'undefined') {
        useC = false
    }
    if (typeof(fL) == 'undefined') {
        fL = null
    }
    if (typeof(excl) == 'undefined') {
        excl = false
    }
    var hcForm = document.forms[fName];
    if (hcForm) {
        var data = this.lpGetFormData(hcForm, fL, excl, prfx);
        if (useC) {
            this.lpAddToSetCookie(this.dCkName, data, lpMTagConfig.lpUseSecureCookies)
        } else {
            var cParam = new hcArrayStorage();
            cParam = this.lpSetCallParams(this.lpCmd, data);
            this.mtagAddToQueue(this.lpURL, cParam, this.MTagCallback, true, this.maxretries, false, 1, 1, lpMTagConfig.charSet)
        }
        return true
    } else {
        lpConnLib.log('Cannot get form=' + fName, 'ERROR', 'EMT');
        return false
    }
};
lpMonitorTag.prototype.lpFormField = function(formN, fldN, useC, prfx) {
    return this.lpFormData(formN, useC, [fldN], false, prfx)
};
lpMonitorTag.prototype.lpGetFormData = function(f, fL, excl, prfx) {
    var nvps = [];
    for (var e = 0; f.length > e; e++) {
        var el = f.elements[e];
        if ((excl && !this.lpValueInArray(el.name, fL)) || ((!excl && this.lpValueInArray(el.name, fL)))) {
            switch (el.type) {
            case "text":
            case "password":
            case "hidden":
                nvps[nvps.length] = (el.name ? escape(el.name) : "undefined" + e) + "=" + escape(el.value);
                break;
            case "select-one":
            case "select-multiple":
                {
                    if (el.length) {
                        for (var m = 0; el.length > m; m++) {
                            if (el[m].selected) {
                                nvps[nvps.length] = (el.name ? escape(el.name) : "undefined" + e) + "=" + escape(el[m].value)
                            }
                        }
                    }
                }
                break;
            case "checkbox":
            case "radio":
                {
                    if (el.checked) {
                        nvps[nvps.length] = (el.name ? escape(el.name) : "undefined" + e) + "=" + escape(el.value)
                    }
                }
                break;
            case "file":
            case "image":
            case "reset":
            case "submit":
            case "button":
            default:
                if (el.tagName == "BUTTON" || el.tagName == "TEXTAREA") {
                    nvps[nvps.length] = (el.name ? escape(el.name) : "undefined" + e) + "=" + escape(el.value)
                }
                break
            }
        }
    }
    var qs = '';
    for (var i = 0; i < nvps.length; i++) {
        if (typeof(prfx) != 'undefined' && prfx != "") {
            qs += prfx
        } else {
            qs += "PV!"
        }
        qs += '' + nvps[i] + '&'
    }
    return qs
};
lpMonitorTag.prototype.lpValueInArray = function(v, l) {
    if (typeof(l) == 'undefined') {
        return false
    }
    for (var i = 0; i < l.length; i++) {
        if (l[i] == v) {
            return true
        }
    }
    return false
};
lpMonitorTag.prototype.lpSendData = function(d, now) {
    if (d.length <= 0) {
        return false
    }
    if (typeof(now) == 'undefined') {
        now = false
    }
    if (now) {
        var send_data = new hcArrayStorage();
        send_data = this.lpSetCallParams('mTagUDEsend', d);
        this.mtagAddToQueue(this.lpURL, send_data, null, false, 0, false, 0, 1, lpMTagConfig.charSet)
    } else {
        this.lpDataToSend += d + '&'
    }
};
lpMonitorTag.prototype.lpAddToSetCookie = function(n, v, s, ex, p, dom) {
    var cV = lpConnLib.getC(n);
    if (cV == null) {
        cV = ''
    }
    this.lpSetCookie(n, v + cV, ex, p, dom, s)
};
lpMonitorTag.prototype.lpSetCookie = function(n, v, e, p, d) {
    if (e) {
        e = e * 1000 * 60 * 60 * 24
    }
    var eD = new Date((new Date()).getTime() + (e));
    document.cookie = n + "=" + escape(v) + ((e) ? ";expires=" + eD.toGMTString() : "") + ((p) ? ";path=" + p : "") + ((d) ? ";domain=" + d : "") + ((lpMTagConfig.lpUseSecureCookies) ? ";secure" : "")
};
lpMonitorTag.prototype.lpGetCookie = function(n) {
    return lpConnLib.getC(n)
};
lpMonitorTag.prototype.lpDeleteCookie = function(n, p, d) {
    if (lpConnLib.getC(n)) {
        document.cookie = n + "=" + ((p) ? ";path=" + p : "") + ((d) ? ";domain=" + d : "") + ";expires=Thu, 01-Jan-1970 00:00:01 GMT"
    }
};
lpMonitorTag.prototype.ifVisitorActions = function(data) {
    var c = lpMTagConfig;
    if (typeof(c.ifVisitorCode) != 'undefined') {
        for (var i = 0; i < c.ifVisitorCode.length; i++) {
            var fn = c.ifVisitorCode[i];
            try {
                fn(data);
                lpConnLib.log('OK Executing Visitor function', 'EXEC-OK', 'EMT')
            } catch (e) {
                lpConnLib.log('ERROR Executing Visitor function=' + fn + ' &nbsp #' + e + '#', 'ERROR', 'EMT')
            }
        }
        c.ifVisitorCode = []
    }
    c.isVisitor = true
};
lpMonitorTag.prototype.MTagCallback = function(d, r) {
    var delay = 0;
    if (typeof(lpMTagConfig.onResponse) == 'function') {
        lpMTagConfig.onResponse(d, r)
    }
    if (typeof(d.ResultSet.lpCallError) != 'undefined') {
        lpMTag.connErrorCnt++;
        if (lpMTag.connErrorCnt <= lpMTag.maxErrorCnt) {
            lpMTag.lpLoopTimer = setTimeout('lpMTag.lpMTagMain()', lpMTag.errorDelay * 1000)
        }
        return
    }
    lpMTag.connErrorCnt = 0;
    if (d.ServiceInfo.resendCall) {
        lpConnLib.log('Resend con ' + d.ResultSet.lpCallId, 'WARN', 'EMT');
        if (r != null) {
            lpMTag.mtagAddReqToQueue(r)
        }
        return
    }
    if (lpMTag.lpCmd == 'mTagKnockPage') {
        lpMTag.lpCmd = 'mTagStartPage';
        lpMTag.startActMon();
        delay = lpMTag.lpStartPageRequestDelay
    } else {
        if (lpMTag.lpCmd == 'mTagStartPage') {
            lpMTag.lpCmd = 'mTagInPage';
            delay = lpMTag.lpFirstInPageRequestDelay
        } else {
            delay = lpMTag.lpInPageRequestDelay
        }
        lpMTag.ifVisitorActions()
    }
    if (!lpMTag.stopMTag) {
        if (lpMTag.lpLoopTimer != -1) {
            clearTimeout(lpMTag.lpLoopTimer)
        }
        if (lpMTag.lpLoopTimer != -1) {
            lpMTag.lpLoopTimer = setTimeout('lpMTag.lpMTagMain()', delay * 1000)
        }
    }
};
lpMonitorTag.prototype.overrideLPServer = function(srvName, setCookie) {
    var c = lpMTagConfig;
    if (setCookie) {
        this.lpSetCookie(this.webServerCookie, srvName)
    }
    c.lpServer = srvName;
    this.lpURL = c.lpProtocol + '://' + c.lpServer + '/hc/' + c.lpNumber + '/'
};
lpMonitorTag.prototype.MTagOnLoad = function() {
    var c = lpMTagConfig;
    if (lpConnLib.getC(this.webServerCookie) != null) {
        this.overrideLPServer(lpConnLib.getC(this.webServerCookie), false)
    }
    if (typeof(c.onLoadCode) != 'undefined') {
        for (var i = 0; i < c.onLoadCode.length; i++) {
            var tempfunc = c.onLoadCode[i];
            try {
                tempfunc();
                lpConnLib.log('OK ONLoad fn', 'EXEC-OK', 'EMT')
            } catch (e) {
                lpConnLib.log('ERROR ONLoad fn=' + tempfunc + ' &nbsp #' + e + '#', 'ERROR', 'EMT')
            }
        }
        c.onLoadCode = []
    }
    if (typeof(lpGetVariables) != 'undefined' && typeof(lpGetVariables) == 'function') {
        this.lpProcessUDEs(lpGetVariables())
    }
    if (typeof(lpUDEs) != 'undefined') {
        this.lpProcessUDEs(lpUDEs)
    }
};
lpMonitorTag.prototype.lpProcessUDEs = function(udes) {
    var c = lpMTagConfig;
    for (var indx in udes) {
        for (var i = 0; i < udes[indx].length; i++) {
            if (indx == 'session') {
                if (typeof(c.sessionVar) == 'undefined') {
                    c.sessionVar = []
                }
                c.sessionVar[c.sessionVar.length] = udes[indx][i]
            } else if (indx == 'page') {
                if (typeof(c.pageVar) == 'undefined') {
                    c.pageVar = []
                }
                c.pageVar[c.pageVar.length] = udes[indx][i]
            } else if (indx == 'visitor') {
                if (typeof(c.visitorVar) == 'undefined') {
                    c.visitorVar = []
                }
                c.visitorVar[c.visitorVar.length] = udes[indx][i]
            }
        }
    }
};
lpMonitorTag.prototype.lpMTagMain = function(forceGet) {
    var cParam = new hcArrayStorage();
    if (typeof(forceGet) == 'undefined') {
        forceGet = false
    }
    cParam = this.lpSetCallParams(this.lpCmd);
    var callType = this.mtagAddToQueue(this.lpURL, cParam, this.MTagCallback, true, this.maxretries, forceGet, undefined, 1, lpMTagConfig.charSet);
    if (callType == 'POST') {
        if (this.lpCmd == 'mTagKnockPage') {
            this.lpCmd = 'mTagStartPage'
        } else if (this.lpCmd == 'mTagStartPage') {
            this.lpCmd = 'mTagInPage'
        }
        lpMTag.lpLoopTimer = setTimeout('lpMTag.lpMTagMain(true)', lpMTag.lpDelayAfterPost * 1000)
    }
};
lpMTagConfig.UDEstore = {};
lpMTagConfig.UDEstore.SV = [];
lpMTagConfig.UDEstore.VV = [];
lpMTagConfig.UDEstore.PV = [];
lpMonitorTag.prototype.addUDESt = function(scope, ude) {
    var c = lpMTagConfig;
    if (scope == 'session') {
        c.UDEstore.SV[c.UDEstore.SV.length] = ude
    } else if (scope == 'visitor') {
        c.UDEstore.VV[c.UDEstore.VV.length] = ude
    } else if (scope == 'page') {
        c.UDEstore.PV[c.UDEstore.PV.length] = ude
    }
};
lpMonitorTag.prototype.regPlugins = function() {
    var c = lpMTagConfig,
        burl = '';
    if (c.lpMTagSrc) {
        burl = c.lpMTagSrc.substr(0, c.lpMTagSrc.lastIndexOf('/')) + "/plugins/"
    } else if (c.lpTagSrv) {
        burl = c.lpProtocol + "://" + c.lpTagSrv + "/hcp/html/plugins/"
    } else {
        burl = c.lpProtocol + "://" + c.lpServer + "/hcp/html/plugins/"
    }
    lpLazy.register('lpRequest.prototype.MakeCallByIframe', burl + 'emt_post_plugin.js');
    lpLazy.register('lpConnectionLibrary.prototype.specialPostHandler', burl + 'emt_sp-post_plugin.js');
    lpLazy.register('lpConnectionLibrary.prototype.splitRequestIntoGets', burl + 'emt_split-post_plugin.js');
    lpLazy.register('lpConnectionLibrary.prototype.reportError', burl + 'emt_reportError_plugin.js');
    lpLazy.register('lpMonitorTag.prototype.lpSetPage', burl + 'emt_lpSetPage_plugin.js')
};
var lpLazy = {
    map: {},
    d: {},
    register: function(mS, f) {
        try {
            var that = this;
            if (mS.indexOf('.prototype.') > -1) {
                var str = mS + " = function () {var that = this; lpLazy.prx('" + mS + "', arguments, that);}";
                eval(str)
            } else if (mS.indexOf('.') > -1) {
                var r = this.gR(mS);
                r.rf[r.mt] = function() {
                    that.prx(mS, arguments)
                }
            } else {
                window[mS] = function() {
                    that.prx(mS, arguments)
                }
            }
            this.map[mS] = f;
            this.log('register:' + mS + ' ' + f, 'DEBUG', 'LPLAZY')
        } catch (e) {
            this.log('Ex:' + e, 'ERROR', 'LPLAZY')
        }
    },
    prx: function(mS, a, ctx) {
        try {
            var inP = true;
            if (typeof(this.d[mS]) == 'undefined') {
                this.d[mS] = [];
                inP = false
            }
            this.d[mS][this.d[mS].length] = {
                a: a,
                ctx: ctx
            };
            if (!inP) {
                this.lPl(this.map[mS])
            }
            this.log('prx:' + mS, 'DEBUG', 'LPLAZY')
        } catch (e) {
            this.log('Ex:' + e, 'ERROR', 'LPLAZY')
        }
    },
    callback: function(mS) {
        try {
            var i;
            if (mS.indexOf('.') == -1) {
                ctx = window[mS];
                for (i = 0; i < this.d[mS].length; i++) {
                    window[mS].apply(this, this.d[mS][i].a)
                }
            } else if (mS.indexOf('.prototype.') > -1) {
                var fnN = mS.substr(mS.indexOf('.prototype.') + 11);
                for (i = 0; i < this.d[mS].length; i++) {
                    this.d[mS][i].ctx[fnN].apply(this.d[mS][i].ctx, this.d[mS][i].a)
                }
            } else {
                var r = this.gR(mS);
                for (i = 0; i < this.d[mS].length; i++) {
                    r.rf[r.mt].apply(r.rf, this.d[mS][i].a)
                }
            }
            this.d[mS] = [];
            this.log('callback:' + mS, 'DEBUG', 'LPLAZY')
        } catch (e) {
            this.log('Ex:' + e, 'ERROR', 'LPLAZY')
        }
    },
    lPl: function(src) {
        var s = document.createElement("script");
        s.setAttribute("type", "text/javascript");
        s.setAttribute("charset", "iso-8859-1");
        s.setAttribute("src", src);
        document.getElementsByTagName("head").item(0).appendChild(s)
    },
    gR: function(mS) {
        var d = mS.split('.'),
            ref = window;
        for (var i = 0; i < d.length - 1; i++) {
            ref = ref[d[i]]
        }
        return {
            rf: ref,
            mt: d[d.length - 1]
        };
    },
    log: function(msg, lvl, sys) {
        lpConnLib.log(msg, lvl, sys)
    }
};
if (typeof(lpOpenPlatformNS) == 'undefined') {
    window.lpOpenPlatformNS = {}
}
if (typeof(lpMTagDebug) == 'undefined') {
    window.lpMTagDebug = {}
}
var lpMTag = new lpMonitorTag();
lpMTag.ver = '9.5.0';
lpMTag.build = '3';
lpMTag.MTagOnLoad();
lpMTag.regPlugins();
lpMTag.lpLoopTimer = setTimeout('lpMTag.lpMTagMain()', lpMTag.lpKnockPageRequestDelay * 1000);

#9 JavaScript::Eval (size: 1097, repeated: 1)

if (typeof(_gaq) != 'undefined') {
    var _windowOpenRef = window.open,
        _windowOpen = function(openurl, name, params) {
            var windowOpenRetValue;
            name = typeof name !== 'undefined' ? name : null;
            params = typeof params !== 'undefined' ? params : null;
            if (typeof _windowOpenRef === 'function') {
                windowOpenRetValue = _windowOpenRef.call(window, openurl, name, params)
            } else {
                windowOpenRetValue = _windowOpenRef(openurl, name, params)
            }
            return windowOpenRetValue
        };
    window.open = function(url, name, params) {
        var openurl = url;
        try {
            if (typeof(_gaq) != 'undefined' && ((url.indexOf('file=visitorWantsToChat') != -1) || (url.indexOf('file=visitorWantsToTalk') != -1) || (url.indexOf('file=visitorWantsToCallback') != -1))) {
                var tracker = _gat._getTrackerByName();
                openurl = tracker._getLinkerUrl(openurl)
            }
        } catch (egx) {
            if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) != 'undefined') {
                lpMTagDebug.Display('EXCEPTION in googleSnippet:' + egx, 'ERROR')
            }
        }
        return _windowOpen(openurl, name, params)
    }
} else {
    if (typeof(lpMTagDebug) != 'undefined' && typeof(lpMTagDebug.Display) != 'undefined') {
        lpMTagDebug.Display('No GOOGLE TAG IS DEPLOYED - NOT DEPLOYING GOOGLE ANALYTICS Integration', 'WARN')
    }
}

#10 JavaScript::Eval (size: 461, repeated: 4)

if (window.lpTag && window.lpTag.events) {
    window.lpTag.events.trigger('LPChat', 'LP_ADVANCED_AVAILABILITY', {
        'engagementId': '84421077_a7bd0f9d-2c34-45b5-94d4-b7a48b214a44',
        'instanceId': '8442107748245702624',
        'repAv': '2',
        'type': 'button'
    })
} else if (window.lpMTag && window.lpMTag.events) {
    window.lpMTag.events.publish('LP_ADVANCED_AVAILABILITY', {
        'engagementId': '84421077_a7bd0f9d-2c34-45b5-94d4-b7a48b214a44',
        'instanceId': '8442107748245702624',
        'repAv': '2',
        'type': 'button'
    })
}

#11 JavaScript::Eval (size: 205, repeated: 1)

if (window.lpTag && window.lpTag.events) {
    window.lpTag.events.trigger('LPChat', 'LP_REP_STATE_CHANGED', {});
} else if (window.lpMTag && window.lpMTag.events) {
    window.lpMTag.events.publish('LP_REP_STATE_CHANGED', {});
}

#12 JavaScript::Eval (size: 555, repeated: 4)

if (window.lpTag && window.lpTag.events) {
    window.lpTag.events.trigger('LPChat', 'SEGMENTS_LIST', {
        'segments': ['de6f74539dc3de854371bec2a7a3da', '214d9d326525e26f7f7b9cbf67f96b2', '2355b41e44cc7dd1d1fbbc4236478c6', 'b7cb4377e4219116be76b0c4c18bff8', '6f14c075c5227974498e13e4a3e72173']
    });
} else if (window.lpMTag && window.lpMTag.events) {
    window.lpMTag.events.publish('SEGMENTS_LIST', {
        'segments': ['de6f74539dc3de854371bec2a7a3da', '214d9d326525e26f7f7b9cbf67f96b2', '2355b41e44cc7dd1d1fbbc4236478c6', 'b7cb4377e4219116be76b0c4c18bff8', '6f14c075c5227974498e13e4a3e72173']
    });
}

#13 JavaScript::Eval (size: 148, repeated: 1)

lpConnectionLibrary.prototype.reportError = function() {
    var that = this;
    lpLazy.prx('lpConnectionLibrary.prototype.reportError', arguments, that);
}

#14 JavaScript::Eval (size: 162, repeated: 1)

lpConnectionLibrary.prototype.specialPostHandler = function() {
    var that = this;
    lpLazy.prx('lpConnectionLibrary.prototype.specialPostHandler', arguments, that);
}

#15 JavaScript::Eval (size: 166, repeated: 1)

lpConnectionLibrary.prototype.splitRequestIntoGets = function() {
    var that = this;
    lpLazy.prx('lpConnectionLibrary.prototype.splitRequestIntoGets', arguments, that);
}

#16 JavaScript::Eval (size: 18, repeated: 1)

lpJSLib.dynButton0

#17 JavaScript::Eval (size: 32, repeated: 1)

lpJSLib.dynButton0 = new Array();

#18 JavaScript::Eval (size: 50, repeated: 1)

lpJSLib.dynButton0['alternate'] = '<span></span>';

#19 JavaScript::Eval (size: 45, repeated: 1)

lpJSLib.dynButton0['busy'] = '<span></span>';

#20 JavaScript::Eval (size: 48, repeated: 1)

lpJSLib.dynButton0['default'] = '<span></span>';

#21 JavaScript::Eval (size: 48, repeated: 1)

lpJSLib.dynButton0['offline'] = '<span></span>';

#22 JavaScript::Eval (size: 222, repeated: 1)

lpJSLib.dynButton0['online'] = '<a href="#" onClick="ON_CLICK_EVENT; return false;"><img width="163" height="34" border="0" src="http://www.liveperson.com/sites/all/themes/liveperson/images/topright_clicktochat.png"></a>';

#23 JavaScript::Eval (size: 18, repeated: 1)

lpJSLib.dynButton1

#24 JavaScript::Eval (size: 32, repeated: 1)

lpJSLib.dynButton1 = new Array();

#25 JavaScript::Eval (size: 50, repeated: 1)

lpJSLib.dynButton1['alternate'] = '<span></span>';

#26 JavaScript::Eval (size: 45, repeated: 1)

lpJSLib.dynButton1['busy'] = '<span></span>';

#27 JavaScript::Eval (size: 48, repeated: 1)

lpJSLib.dynButton1['default'] = '<span></span>';

#28 JavaScript::Eval (size: 48, repeated: 1)

lpJSLib.dynButton1['offline'] = '<span></span>';

#29 JavaScript::Eval (size: 220, repeated: 1)

lpJSLib.dynButton1['online'] = '<a href="#" onClick="ON_CLICK_EVENT; return false;"><img width="200" height="78" border="0" src="http://www.liveperson.com/sites/all/themes/liveperson/images/footer_clicktochat.png"></a>';

#30 JavaScript::Eval (size: 18, repeated: 1)

lpJSLib.dynButton2

#31 JavaScript::Eval (size: 32, repeated: 1)

lpJSLib.dynButton2 = new Array();

#32 JavaScript::Eval (size: 50, repeated: 1)

lpJSLib.dynButton2['alternate'] = '<span></span>';

#33 JavaScript::Eval (size: 45, repeated: 1)

lpJSLib.dynButton2['busy'] = '<span></span>';

#34 JavaScript::Eval (size: 48, repeated: 1)

lpJSLib.dynButton2['default'] = '<span></span>';

#35 JavaScript::Eval (size: 48, repeated: 1)

lpJSLib.dynButton2['offline'] = '<span></span>';

#36 JavaScript::Eval (size: 191, repeated: 1)

lpJSLib.dynButton2['online'] = '<a href="javascript:;" onClick="ON_CLICK_EVENT"><img width="200" height="78" border="0" src="/sites/all/themes/liveperson/images/footer_clicktocall.png"></a>';

#37 JavaScript::Eval (size: 30, repeated: 4)

lpMTag.lpInPageRequestDelay = 5;

#38 JavaScript::Eval (size: 16, repeated: 3)

lpMTagConfig.db1

#39 JavaScript::Eval (size: 16, repeated: 1)

lpMTagConfig.db2

#40 JavaScript::Eval (size: 434, repeated: 1)

lpMTagConfig.dynButton0 = new lpDynButton('lpMTagConfig.dynButton0', 'lpMTagConfig.db1', 'chat-sales-general-english-1', 10, 1, 'Click to Chat With an Online Representative', 'lpChatButton1', 100, 100, 0, '', 0, -1, -1, 2, 'null/', '', '', '', '', '', 'lpJSLib.dynButton0', {
    none: {
        height: 320,
        width: 472
    },
    offline: {
        height: 760,
        width: 360
    },
    online: {
        height: 760,
        width: 360
    }
}, 'f907f2d9acd64b7f8c00b83bed3c2822', 76, false, false);
lpMTagConfig.dynButton0.Start();

#41 JavaScript::Eval (size: 434, repeated: 1)

lpMTagConfig.dynButton1 = new lpDynButton('lpMTagConfig.dynButton1', 'lpMTagConfig.db1', 'chat-sales-general-english-2', 10, 1, 'Click to Chat With an Online Representative', 'lpChatButton2', 100, 100, 0, '', 0, -1, -1, 2, 'null/', '', '', '', '', '', 'lpJSLib.dynButton1', {
    none: {
        height: 320,
        width: 472
    },
    offline: {
        height: 760,
        width: 360
    },
    online: {
        height: 760,
        width: 360
    }
}, 'f907f2d9acd64b7f8c00b83bed3c2822', 77, false, false);
lpMTagConfig.dynButton1.Start();

#42 JavaScript::Eval (size: 436, repeated: 1)

lpMTagConfig.dynButton2 = new lpDynButton('lpMTagConfig.dynButton2', 'lpMTagConfig.db2', 'voice-sales-general-english-1', -1, 2, 'Click to call With an Online Representative', 'lpVoiceButton1', 100, 100, 0, '', 0, -1, -1, 2, 'null/', '', '', '', '', '', 'lpJSLib.dynButton2', {
    none: {
        height: 320,
        width: 472
    },
    offline: {
        height: 320,
        width: 472
    },
    online: {
        height: 320,
        width: 472
    }
}, 'f907f2d9acd64b7f8c00b83bed3c2822', 93, false, false);
lpMTagConfig.dynButton2.Start();

#43 JavaScript::Eval (size: 1581, repeated: 1)

lpMTagConfig.oemName = 'LivePerson';
lpMTagConfig.poweredByURL = 'http://solutions.liveperson.com/ref/lppb.asp';
lpMTagConfig.servlet = 'hc/';
lpMTagConfig.appletsDirectory = 'applets/v7.8';
lpMTagConfig.charSet = 'UTF-8';
lpMTagConfig.language = 'ml';
lpMTagConfig.credit = 'powered';
lpMTagConfig.logoDir = 'icon/lp';
lpMTagConfig.useFirstParty = false;
lpMTagConfig.allowThirdPartyByServer = true;
lpMTagConfig.lpUseSecureCookies = false;
lpMTagConfig.lpUseSessionCookies = false;
lpMTagConfig.cobrowseEnabled = true;
lpMTag.activityMonitor = true;
lpMTagConfig.lpSendCookies = true;
lpConnLib.postDeleteIfrDelay = 3;
lpMTagConfig.minimizePost = false;
lpMTagConfig.minimizePostMaxGets = 3;
lpMTagConfig.allowTruncate = false;
lpMTagConfig.serverVer = '12.5.2.0';
lpMTagConfig.serverBuild = '13';
lpMTagConfig.dbMultipleClickDelay = 3;
lpMTagConfig.sgpemtAvoidPOST = true;
lpMTagConfig.sgpemtMaxUrlLength = 500;
lpMTagConfig.sgpemtMinUrlLength = 100;
lpMTagConfig.sgpemtMaxReferLength = 300;
lpMTagConfig.sgpemtMinReferLength = 100;
lpMTagConfig.sgpemtMaxTitleLength = 100;
lpMTagConfig.sgpemtMinTitleLength = 50;
lpMTagConfig.maxPageWinNameLength = 200;
lpMTagConfig.sgpemtSplitCookie = false;
lpMTagConfig.sgpemtSplitCookieMinDelta = 200;
lpMTagConfig.LEeventsAPI = true;
if (typeof(lpMTagStatic) != 'undefined') {
    if (typeof(lpMTagStatic.onInitMonitor) != 'undefined') {
        for (var i = 0; i < lpMTagStatic.onInitMonitor.length; i++) {
            var tempfunc = lpMTagStatic.onInitMonitor[i];
            try {
                tempfunc();
                lpConnLib.log('OK ONLoad fn', 'EXEC-OK', 'STATIC-BUTTON')
            } catch (e) {
                lpConnLib.log('ERROR ONLoad fn=' + tempfunc + ' &nbsp #' + e + '#', 'ERROR', 'STATIC-BUTTON')
            }
        }
        lpMTagStatic.onInitMonitor = []
    }
}

#44 JavaScript::Eval (size: 130, repeated: 1)

lpMonitorTag.prototype.lpSetPage = function() {
    var that = this;
    lpLazy.prx('lpMonitorTag.prototype.lpSetPage', arguments, that);
}

#45 JavaScript::Eval (size: 138, repeated: 1)

lpRequest.prototype.MakeCallByIframe = function() {
    var that = this;
    lpLazy.prx('lpRequest.prototype.MakeCallByIframe', arguments, that);
}

#46 JavaScript::Eval (size: 24, repeated: 2)

typeof(lpMTagConfig.db1)

#47 JavaScript::Eval (size: 24, repeated: 1)

typeof(lpMTagConfig.db2)

Executed Writes (2)

#1 JavaScript::Write (size: 838, repeated: 1)

<iframe name="google_conversion_frame" width="300" height="13" src="http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1072532439/?random=1352291451257&cv=7&fst=1352291451257&num=1&fmt=1&label=PGPsCL7tvwEQ15e2_wM&guid=ON&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_his=1&u_tz=60&u_java=true&u_nplug=8&u_nmime=54&url=http%3A//www.liveperson.com/&frm=0" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no"><img height="1" width="1" border="0" src="http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1072532439/?frame=0&random=1352291451257&cv=7&fst=1352291451257&num=1&fmt=1&label=PGPsCL7tvwEQ15e2_wM&guid=ON&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_his=1&u_tz=60&u_java=true&u_nplug=8&u_nmime=54&url=http%3A//www.liveperson.com/&frm=0" /></iframe>

#2 JavaScript::Write (size: 77, repeated: 1)

<script src='http://s.clicktale.net/WRc5.js' type='text/javascript'></script>


HTTP Transactions (170)


Request Response
GET / HTTP/1.1

Host: hc2.humanclick.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 302 Object moved

Content-Type: text/html
Date: Wed, 07 Nov 2012 12:30:46 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Location: http://www.humanclick.com
Content-Length: 146
Set-Cookie: ASPSESSIONIDCAADRAAD=HMIPMONBJBJCJDPKFHAAPJAL; path=/
Cache-Control: private
GET / HTTP/1.1

Host: www.humanclick.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 301 Moved Permanently

Content-Type: text/html
Date: Wed, 07 Nov 2012 12:30:47 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Location: http://www.liveperson.com
Content-Length: 0
Set-Cookie: ASPSESSIONIDQSSSSDTR=LAHAAGJCIOCACKHBPFMIFFDE; path=/
Cache-Control: private
GET /modules/system/system.base.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/shadowbox/shadowbox.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/LP_LOGO_0.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /modules/poll/poll.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /modules/field/theme/field.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /modules/comment/comment.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /modules/forum/forum.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/views/css/views.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/ckeditor/ckeditor.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/css/superfish.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/css/superfish-vertical.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/ctools/css/ctools.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/css/superfish-navbar.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/tagadelic/tagadelic.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/views_slideshow/views_slideshow.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /modules/locale/locale.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/ds/layouts/ds_2col/ds_2col.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:47 GMT
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/ddblock/css/ddblock.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/style/main_nav.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/ds/layouts/ds_3col_stacked_equal_width/ds_3col_stacked_equal_width.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/field_group/field_group.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/sky/css/style.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/sky/css/forms.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET / HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Content-Length: 98814
Expires: 11/8/2012 7:30:47 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Date: Wed, 07 Nov 2012 12:30:46 GMT
GET /sites/all/themes/liveperson/css/custom.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/css/layout.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/css/callout.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/css/marquee.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/css/landing.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/css/directories.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/sky/css/print.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/custom/modules/ddblock/upright30p/ddblock-cycle-upright30p.css?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /misc/jquery.once.js?v=1.2 HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /misc/drupal.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/jquery_update/replace/ui/ui/minified/jquery.effects.core.min.js?v=1.8.11 HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/jquery.hoverIntent.minified.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/jquery_update/replace/jquery/jquery.min.js?v=1.5.2 HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/jquery.bgiframe.min.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/admin_menu/admin_devel/admin_devel.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/shadowbox/shadowbox.js?v=3.0.3 HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /js/250/addthis_widget.js HTTP/1.1

Host: s7.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Last-Modified: Thu, 01 Nov 2012 12:00:06 GMT
Etag: &quot;303469-1af5-4cd6dc28d1d80&quot;
Accept-Ranges: bytes
Content-Encoding: gzip
Content-Length: 2703
Date: Wed, 07 Nov 2012 12:30:48 GMT
Connection: keep-alive
Vary: Accept-Encoding
GET /misc/collapse.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/field_group/field_group.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/superfish.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/ddblock/js/json2.pack.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /svn/trunk/konami.js HTTP/1.1

Host: konami-js.googlecode.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/plain
Date: Wed, 07 Nov 2012 12:29:27 GMT
Server: Apache
Last-Modified: Sat, 16 Apr 2011 16:34:52 GMT
Etag: &quot;24//trunk/konami.js&quot;
Accept-Ranges: bytes
Expires: Wed, 07 Nov 2012 12:32:27 GMT
Content-Length: 4223
Age: 81
Cache-Control: public, max-age=180
GET /misc/form.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/ddblock/js/ddblock.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /pagead/conversion.js HTTP/1.1

Host: www.googleadservices.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
P3P: policyref=&quot;http://www.googleadservices.com/pagead/p3p.xml&quot;, CP=&quot;NOI DEV PSA PSD IVA IVD OTP OUR OTR IND OTC&quot;
Etag: 13183414511898789384
Date: Wed, 07 Nov 2012 01:17:21 GMT
Expires: Thu, 08 Nov 2012 01:17:21 GMT
X-Content-Type-Options: nosniff
Content-Disposition: attachment
Content-Encoding: gzip
Server: cafe
Content-Length: 2469
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=86400
Age: 40407
GET /sites/all/themes/liveperson/js/jquery.cookie.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/js/scripts.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/js/jQueryString-2.0.2-Min.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/js/jquery.scrollTo-min.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
POST / HTTP/1.1

Host: ocsp.digicert.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Server: nginx
Date: Wed, 07 Nov 2012 12:30:48 GMT
Connection: keep-alive
Content-Length: 471
Last-Modified: Wed, 07 Nov 2012 10:28:08 GMT
Expires: Tue, 13 Nov 2012 10:28:08 GMT
Cache-Control: max-age=511513
Accept-Ranges: bytes
GET /sites/all/themes/liveperson/js/supersleight.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /munchkin.js HTTP/1.1

Host: munchkin.marketo.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/javascript
Server: Apache
Accept-Ranges: bytes
P3P: policyref=&quot;http://www.marketo.com/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURi OUR NOR&quot;
Content-Encoding: gzip
Vary: Accept-Encoding
Age: 57314
Date: Wed, 07 Nov 2012 12:30:48 GMT
Last-Modified: Fri, 24 Aug 2012 06:23:52 GMT
Content-Length: 4073
Connection: keep-alive
POST / HTTP/1.1

Host: ocsp.digicert.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.1 200 OK

Content-Type: application/ocsp-response
Server: nginx
Date: Wed, 07 Nov 2012 12:30:48 GMT
Connection: close
Content-Length: 471
Last-Modified: Wed, 07 Nov 2012 10:36:12 GMT
Expires: Tue, 13 Nov 2012 10:36:12 GMT
Cache-Control: max-age=511997
Accept-Ranges: bytes
GET /sites/all/libraries/jquery.cycle/jquery.cycle.all.min.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/js/mtagconfig.js HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/supersubs.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/data_icon_3_visits_lg.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/lp_logo.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/data_icon_2_chats_lg-.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:48 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/supposition.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/topright_sharethis_off.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/topright_printer_off.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /js/plusone.js HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: application/javascript; charset=utf-8
x-ua-compatible: IE=edge, chrome=1
Etag: &quot;99cef75a216e7271081f480fb640e7fe&quot;
Expires: Wed, 07 Nov 2012 12:30:49 GMT
Date: Wed, 07 Nov 2012 12:30:49 GMT
Cache-Control: private, max-age=1800
Content-Encoding: gzip
Transfer-Encoding: chunked
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
GET /sites/default/files/styles/editorial_callout_smallsquare/public/pictures/hp_new_insights_tile.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/sftouchscreen.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /jzt0kcr.js HTTP/1.1

Host: use.typekit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/javascript;charset=utf-8
Content-Encoding: gzip
Cache-Control: public, max-age=600
Date: Wed, 07 Nov 2012 12:30:49 GMT
Server: nginx/0.7.65
Status: 200 OK
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/styles/editorial_callout_smallsquare/public/pictures/HP_whats_new_lp_marketer_video_icon.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/styles/editorial_callout_smallsquare/public/pictures/IntelagentChatIcon.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/styles/w_240_h_170/public/pictures/virgin_lg_play.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/views_slideshow/js/views_slideshow.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/styles/call_card_image/public/pictures/Dave_Flammia.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/slideshow/HP_0_Homepage_marquee-3.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/styles/call_card_image/public/pictures/rob_photo.PNG HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/HP_products_lpchat_0.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/modules/views_slideshow_ddblock/js/formoptions.js?md2oql HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/slideshow/HP_0_Homepage_marquee_LPInsights.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:48 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/HP_products_lpmarketer_0.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/hp_new_09_0.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/HP_products_lpinsights_0_0.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/hp_new_11.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/hp_new_13.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /static/r07/core046.js HTTP/1.1

Host: ct5.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/javascript
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, no-check, max-age=86313600
Date: Wed, 07 Nov 2012 12:30:49 GMT
Last-Modified: Thu, 01 Nov 2012 11:59:11 GMT
Server: ECS (arn/46EB)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 48365
GET /sites/default/files/pictures/corp_logo_03.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/corp_logo_05.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/slideshow/HP_0_Homepage_marquee_1c_0.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/corp_logo_06.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /ga.js HTTP/1.1

Host: www.google-analytics.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
If-Modified-Since: Wed, 19 Sep 2012 11:51:40 GMT
HTTP/1.1 200 OK

Content-Type: text/javascript
Content-Length: 14888
Content-Encoding: gzip
Last-Modified: Mon, 22 Oct 2012 15:51:19 GMT
X-Content-Type-Options: nosniff, nosniff
Date: Wed, 07 Nov 2012 01:09:12 GMT
Expires: Wed, 07 Nov 2012 13:09:12 GMT
Vary: Accept-Encoding
Age: 40897
Cache-Control: max-age=43200, public
Server: GFE/2.0
GET /sites/default/files/pictures/corp_logo_07.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/corp_logo_09.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/ibm.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/corp_logo_08.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/baCountry.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/sky_logo.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/virgin_logo.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/snapfish.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /static/r07/widget097.css HTTP/1.1

Host: ct5.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, no-check, max-age=86313600
Date: Wed, 07 Nov 2012 12:30:50 GMT
Last-Modified: Thu, 01 Nov 2012 11:59:12 GMT
Server: ECS (arn/46FD)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 21696
GET /sites/default/files/styles/w_450_h_190/public/pictures/Culture_Haggai.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/masthead_bkgd.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/grayright.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /__utm.gif?utmwv=5.3.7&utms=1&utmn=1666372058&utmhn=www.liveperson.com&utmcs=UTF-8&utmsr=1176x885&utmvp=1176x778&utmsc=24-bit&utmul=en-us&utmje=1&utmfl=10.0%20r45&utmdt=Customer%20Experience%20Management%20and%20Live%20Chat%20Software&utmhid=1900701130&utmr=-&utmp=%2F&utmac=UA-277946-1&utmcc=__utma%3D140343598.906852260.1352291450.1352291450.1352291450.1%3B%2B__utmz%3D140343598.1352291450.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=qh~ HTTP/1.1

Host: www.google-analytics.com
GET /__utm.gif?utmwv=5.3.7&amp;utms=1&amp;utmn=1666372058&amp;utmhn=www.liveperson.com&amp;utmcs=UTF-8&amp;utmsr=1176x885&amp;utmvp=1176x778&amp;utmsc=24-bit&amp;utmul=en-us&amp;utmje=1&amp;utmfl=10.0%20r45&amp;utmdt=Customer%20Experience%20Management%20and%20Live%20Chat%20Software&amp;utmhid=1900701130&amp;utmr=-&amp;utmp=%2F&amp;utmac=UA-277946-1&amp;utmcc=__utma%3D140343598.906852260.1352291450.1352291450.1352291450.1%3B%2B__utmz%3D140343598.1352291450.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&amp;utmu=qh~ HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Thu, 01 Nov 2012 01:37:51 GMT
Content-Length: 35
X-Content-Type-Options: nosniff
Pragma: no-cache
Expires: Wed, 19 Apr 2000 11:43:00 GMT
Last-Modified: Wed, 21 Jan 2004 19:51:30 GMT
Cache-Control: private, no-cache, no-cache=Set-Cookie, proxy-revalidate
Age: 557579
Server: GFE/2.0
GET /sites/all/themes/liveperson/images/orangetop.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/downArrow.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/images/topnavsprite.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/libraries/superfish/style/main_nav.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/grayleft.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/images/main_nav_bg.gif HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/libraries/superfish/style/main_nav.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/images/dot.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/libraries/superfish/style/main_nav.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/virgin_130.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/libraries/superfish/style/main_nav.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /_/apps-static/_/js/gapi/plusone/rt=j/ver=zfq9BF98FFM.no./sv=1/am=!R7JhevK68w2IwTSFZw/d=1/rs=AItRSTOFOTeV3g2f5Xg8Wf3esjJMS5F10g/cb=gapi.loaded_0 HTTP/1.1

Host: apis.google.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: PREF=ID=18d07d2c5ecbbb08:U=205ee10a10512bfa:FF=0:TM=1350344350:LM=1350344627:S=oVTvNjgbzbFNBNUF; NID=64=UOjfkeau7k9dzmFvAsFwVqmD4s7g_bdUMaEnGOlKRSTKCit3R_G5xg2kMKTOgRf2IL0DzvimBbfFpj1mIHK6cKNk76wCsEyOlULvzyFq8aklSyHHGXGPdMpqcZCr8LfK
HTTP/1.1 200 OK

Content-Type: text/javascript; charset=UTF-8
Etag: &quot;1509811931&quot;
Expires: Fri, 07 Dec 2012 02:13:02 GMT
Date: Wed, 07 Nov 2012 02:13:02 GMT
Content-Encoding: gzip
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Cache-Control: public, max-age=2592000
Content-Length: 27849
Age: 37068
GET /sites/all/libraries/superfish/images/ProductsServices_Mobile.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/libraries/superfish/style/main_nav.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/images/PlatformCapabilities_platformInfoGraph.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/libraries/superfish/style/main_nav.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/pictures/Nav_KeywordLift_Thumb.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/libraries/superfish/style/main_nav.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/images/PlatformCapabilities_Adobe.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/libraries/superfish/style/main_nav.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/images/NewsEvents_ForrestWebinar.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/libraries/superfish/style/main_nav.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/default/files/styles/w_450_h_190/public/pictures/aspire_hp_new.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:49 GMT
Expires: 11/8/2012 7:30:49 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/libraries/superfish/images/AboutLP_Allcompany.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/libraries/superfish/style/main_nav.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/dw_bkgd.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/PageBkgdTest.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/large_rule.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/callout.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/main_bkgd.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/quotes_top.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/callout.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/quotes_bottom.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/callout.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/spotted_border.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/directories.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/call_quote_top.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/callout.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/call_quote_end.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/callout.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/bullet.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/footer_pt1_bkgd.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/footer_pt1_arrow.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/footer_pt2_bkgd.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/16x16Icons.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/hr.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/fbook.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/twit.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/goog.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/youtu.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web2
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/linkedin.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/footer_logo_white.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/sites/all/themes/liveperson/css/custom.css?md2oql
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: 11/8/2012 7:30:50 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /p.gif?s=1&k=jzt0kcr&ht=tk&h=www.liveperson.com&f=6852.6849.6851&a=478351&_=1352291450815 HTTP/1.1

Host: p.typekit.net
GET /p.gif?s=1&amp;k=jzt0kcr&amp;ht=tk&amp;h=www.liveperson.com&amp;f=6852.6849.6851&amp;a=478351&amp;_=1352291450815 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Accept-Ranges: bytes
Cache-Control: max-age=604800
Date: Wed, 07 Nov 2012 12:30:50 GMT
Expires: Wed, 14 Nov 2012 12:30:50 GMT
Last-Modified: Tue, 31 Jul 2012 23:01:31 GMT
Server: ECS (arn/46E4)
X-Cache: HIT
Content-Length: 35
GET /c/e76918/myriad-pro-1:n3:n4:n6.Xc9:F:1,XcH:F:1,XcJ:F:1/d?3bb2a6e53c9684ffdc9a9ff01b5b2a6239a4baff22c42d6fefaab30379b684638f796a759d0252ac8a5aeb03ce3aebd66dc9c83b95006a9efcf1965a7ff2a9ea0961e6b7321b176f0a673a5cf7a42b8bf154267185de6abaa811dfaa331d519114c81dfef3d2daa7eb9affdeda5d16a1d53d54998589ebaee77a8ecf9a712f293f897c07ce69b8095d47ecd194b067719309f40530cd0853d748075f6a2f105493a7a8429fa1df68e3b90ba5427ba4a47a721dfad4a2920b81bec7a2333077a8879404a24a0ed69f5e8a6c16f3c76673bd99fbe59640196dfb1f6fe32a0a20269c3904d7843fd8d62e6885bd0562169d84394220586bd90e37e728e30255d568d18404b39eee0a3414bd1e27d87c072447fe10b6a8998112dba52c02d6a9e736a8159d57a58e1f411566841afa04eee7fd3b40179a4d9d9f243dc2125331020389e8b4ca5e6f4c9167edc3f56700069022bc4ebb85363385103fb2ced1aff63369b7a9c74f0d15520fb80fc91cce7e2bb7d2892b109b61d0e5de684a3df994e35c604741da060b11f66e6e671ea2ce7539d50990692f336b8072bbe13d7aaf7db5feca6ddc7f26ce29175435b780c8f3e2a25d02c67a7a7d870e73cf80f94ce0246d7f788d197f54de1077931b73c6f20b38f088a355918fbf81d005a4657704f3673492bc679350669098e0bb670337c4f46b58da3323fb24ca405633e16f1da45207648aa014e108dd08047992b60836606b2f4b75b924c95f534b315929ced65f7cffe1d215771de02ce191441a2939 HTTP/1.1

Host: use.typekit.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/css;charset=utf-8
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, max-age=604800
Date: Wed, 07 Nov 2012 12:30:50 GMT
Last-Modified: Tue, 06 Nov 2012 21:13:54 GMT
Server: ECS (arn/46DE)
Status: 200 OK
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 235822
GET /pagead/viewthroughconversion/1072532439/?random=1352291451257&cv=7&fst=1352291451257&num=1&fmt=1&label=PGPsCL7tvwEQ15e2_wM&guid=ON&u_h=885&u_w=1176&u_ah=855&u_aw=1176&u_cd=24&u_his=1&u_tz=60&u_java=true&u_nplug=8&u_nmime=54&url=http%3A//www.liveperson.com/&frm=0 HTTP/1.1

Host: googleads.g.doubleclick.net
GET /pagead/viewthroughconversion/1072532439/?random=1352291451257&amp;cv=7&amp;fst=1352291451257&amp;num=1&amp;fmt=1&amp;label=PGPsCL7tvwEQ15e2_wM&amp;guid=ON&amp;u_h=885&amp;u_w=1176&amp;u_ah=855&amp;u_aw=1176&amp;u_cd=24&amp;u_his=1&amp;u_tz=60&amp;u_java=true&amp;u_nplug=8&amp;u_nmime=54&amp;url=http%3A//www.liveperson.com/&amp;frm=0 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: id=223ae1776901005b||t=1350343758|et=730|cs=002213fd480aa30e9cef2f5d42
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
P3P: policyref=&quot;http://googleads.g.doubleclick.net/pagead/gcn_p3p_.xml&quot;, CP=&quot;CURa ADMa DEVa TAIo PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR&quot;
Date: Wed, 07 Nov 2012 12:30:51 GMT
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Cache-Control: no-cache, must-revalidate
X-Content-Type-Options: nosniff
Content-Encoding: gzip
Server: cafe
Content-Length: 76
X-XSS-Protection: 1; mode=block
GET /WRc5.js HTTP/1.1

Host: s.clicktale.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:30:51 GMT
Server: PWS/8.0.9.6
X-Px: ht fra-tel-n36.panthercdn.com
Etag: &quot;0bb6dd34daacd1:544f&quot;
Cache-Control: max-age=604800
Expires: Wed, 07 Nov 2012 20:45:54 GMT
Age: 575097
Content-Length: 6845
Content-Encoding: gzip
Vary: Accept-Encoding
Last-Modified: Sun, 14 Oct 2012 20:52:30 GMT
Connection: keep-alive
GET /s2/oz/images/stars/po/Publisher/sprite4-a67f741843ffc4220554c34bd01bb0bb.png HTTP/1.1

Host: ssl.gstatic.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: image/png
Last-Modified: Thu, 13 Sep 2012 21:47:55 GMT
Date: Thu, 01 Nov 2012 01:08:52 GMT
Expires: Fri, 01 Nov 2013 01:08:52 GMT
X-Content-Type-Options: nosniff
Server: sffe
Content-Length: 21399
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 559320
GET /static/r07/sh103.html HTTP/1.1

Host: ct5.addthis.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Accept-Ranges: bytes
Cache-Control: public, no-check, max-age=86313600
Date: Wed, 07 Nov 2012 12:30:54 GMT
Last-Modified: Thu, 01 Nov 2012 12:00:06 GMT
P3P: CP=&quot;NON ADM OUR DEV IND COM STA&quot;
Server: ECS (arn/46FE)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 19180
GET /webevents/visitWebPage?_mchNc=1352291454340&_mchCn=&_mchId=501-BLE-979&_mchTk=_mch-liveperson.com-1352291454321-16056&_mchHo=www.liveperson.com&_mchPo=&_mchRu=%2F&_mchPc=http%3A&_mchHa=&_mchRe=&_mchQp=&_mchVr=134 HTTP/1.1

Host: 501-ble-979.mktoresp.com
GET /webevents/visitWebPage?_mchNc=1352291454340&amp;_mchCn=&amp;_mchId=501-BLE-979&amp;_mchTk=_mch-liveperson.com-1352291454321-16056&amp;_mchHo=www.liveperson.com&amp;_mchPo=&amp;_mchRu=%2F&amp;_mchPc=http%3A&amp;_mchHa=&amp;_mchRe=&amp;_mchQp=&amp;_mchVr=134 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 07 Nov 2012 12:30:54 GMT
Server: Apache
Content-Length: 43
Last-Modified: Wed, 07 Nov 2012 06:30:54 -0600
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
P3P: policyref=&quot;http://www.marketo.com/w3c/p3p.xml&quot;, CP=&quot;NOI DSP COR NID CURi OUR NOR&quot;
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /live/t00/250lo.gif?1wwxzmx&uid=509a547e219633f4&pub=ra-4e98836a343ef279&rev=117843&jsl=33&si=509a547a41e73855&ln=en&pc=men%2Ctbx&dp=www.liveperson.com&of=0&uf=1&irt=0&md=0&ct=1&tct=0&abt=0&lt=176&cdn=5&tl=c%3D367%2Cm%3D4666%2Ci%3D4720%2Cxm%3D4861%2Cxp%3D4868&pi=1&fp=front HTTP/1.1

Host: m.addthisedge.com
GET /live/t00/250lo.gif?1wwxzmx&amp;uid=509a547e219633f4&amp;pub=ra-4e98836a343ef279&amp;rev=117843&amp;jsl=33&amp;si=509a547a41e73855&amp;ln=en&amp;pc=men%2Ctbx&amp;dp=www.liveperson.com&amp;of=0&amp;uf=1&amp;irt=0&amp;md=0&amp;ct=1&amp;tct=0&amp;abt=0&amp;lt=176&amp;cdn=5&amp;tl=c%3D367%2Cm%3D4666%2Ci%3D4720%2Cxm%3D4861%2Cxp%3D4868&amp;pi=1&amp;fp=front HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ct5.addthis.com/static/r07/sh103.html
HTTP/1.1 200 OK

Content-Type: image/gif
Server: Apache-Coyote/1.1
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Content-Length: 37
Date: Wed, 07 Nov 2012 12:30:54 GMT
Connection: close
GET /red/p.json?vr=250&rev=117843&rb=0&gen=1000&gen=100&sid=509a547a41e73855&callback=_ate.ad.hrr&pub=ra-4e98836a343ef279&chr=UTF-8&mk=Customer%20Experience%20Management%2CLive%20Chat%20Software%2CLivePerson&uid=509a547e219633f4&url=http%3A%2F%2Fwww.liveperson.com%2Ffront&1uacmam HTTP/1.1

Host: cf.addthis.com
GET /red/p.json?vr=250&amp;rev=117843&amp;rb=0&amp;gen=1000&amp;gen=100&amp;sid=509a547a41e73855&amp;callback=_ate.ad.hrr&amp;pub=ra-4e98836a343ef279&amp;chr=UTF-8&amp;mk=Customer%20Experience%20Management%2CLive%20Chat%20Software%2CLivePerson&amp;uid=509a547e219633f4&amp;url=http%3A%2F%2Fwww.liveperson.com%2Ffront&amp;1uacmam HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://ct5.addthis.com/static/r07/sh103.html
Cookie: uid=509a547e219633f4; __atuvc=1%7C45; uit=1
HTTP/1.1 200 OK

Content-Type: text/javascript
Server: Apache-Coyote/1.1
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Expires: Wed, 07 Nov 2012 12:30:54 GMT
Content-Length: 88
Date: Wed, 07 Nov 2012 12:30:54 GMT
Connection: close
GET /visitor/addons/deploy2.asp?site=84421077&d_id=2011&default=simpleDeploy HTTP/1.1

Host: base.liveperson.net
GET /visitor/addons/deploy2.asp?site=84421077&amp;d_id=2011&amp;default=simpleDeploy HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:30:55 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Last-Modified: Wed, 01 Aug 2012 12:45:30 GMT
Content-Length: 30772
Set-Cookie: ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; path=/
Cache-Control: public, max-age=3600, s-maxage=3600
GET /hcp/html/mTag.js?site=84421077 HTTP/1.1

Host: base.liveperson.net

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Content-Length: 17334
Content-Location: http://base.liveperson.net/lpWeb/default_ALPHA//hcpv/emt/mtag.js?site=84421077
Last-Modified: Thu, 31 May 2012 20:06:29 GMT
Accept-Ranges: bytes
Etag: &quot;60c5cde683fcd1:1a62&quot;
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 12:30:56 GMT
GET /hc/84421077/?&site=84421077&cmd=mTagKnockPage&lpCallId=408939808516-93165516093&protV=20&lpjson=1&id=5736989141&javaSupport=true&visitorStatus=INSITE_STATUS&dbut=chat-sales-general-english-1%7ClpMTagConfig.db1%7ClpChatButton1%7C%23chat-sales-general-english-2%7ClpMTagConfig.db1%7ClpChatButton2%7C%23voice-sales-general-english-1%7ClpMTagConfig.db2%7ClpVoiceButton1%7C HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?&amp;site=84421077&amp;cmd=mTagKnockPage&amp;lpCallId=408939808516-93165516093&amp;protV=20&amp;lpjson=1&amp;id=5736989141&amp;javaSupport=true&amp;visitorStatus=INSITE_STATUS&amp;dbut=chat-sales-general-english-1%7ClpMTagConfig.db1%7ClpChatButton1%7C%23chat-sales-general-english-2%7ClpMTagConfig.db1%7ClpChatButton2%7C%23voice-sales-general-english-1%7ClpMTagConfig.db2%7ClpVoiceButton1%7C HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:30:56 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Set-Cookie: LivePersonID=LP i=497011465085,d=1352291456; expires=Thu, 07-Nov-2013 12:30:56 GMT; path=/; domain=.liveperson.net HumanClickKEY=586681021337687857; path=/hc/84421077 HumanClickACTIVE=1352291456167; expires=Thu, 08-Nov-2012 12:30:56 GMT; path=/
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:30:56 GMT
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 54293
GET /hc/84421077/?&site=84421077&cmd=mTagStartPage&lpCallId=114160230022-842209203819&protV=20&lpjson=1&page=http%3A//www.liveperson.com/&id=5736989141&javaSupport=true&visitorStatus=INSITE_STATUS&defInvite=chat-sales-english&activePlugin=none&cobrowse=true&PV%21unit=sales&PV%21language=english&PV%21Section=general&PV%21Topic=home-page&PV%21pageLoadTime=5%20sec&PV%21visitorActive=1&title=Customer%20Experience%20Management%20and%20Live%20Chat%20Software&cookie=has_js%3D1%3B%20__utma%3D140343598.906852260.1352291450.1352291450.1352291450.1%3B%20__utmb%3D140343598.1.10.1352291450%3B%20__utmc%3D140343598%3B%20__utmz%3D140343598.1352291450.1.1.utmcsr%3D%28direct%29%7Cutmccn%3D%28direct%29%7Cutmcmd%3D%28none%29%3B%20WRUID%3D0%3B%20_mkto_trk%3Did%3A501-BLE-979%26token%3A_mch-liveperson.com-1352291454321-16056%3B%20__atuvc%3D1%257C45 HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?&amp;site=84421077&amp;cmd=mTagStartPage&amp;lpCallId=114160230022-842209203819&amp;protV=20&amp;lpjson=1&amp;page=http%3A//www.liveperson.com/&amp;id=5736989141&amp;javaSupport=true&amp;visitorStatus=INSITE_STATUS&amp;defInvite=chat-sales-english&amp;activePlugin=none&amp;cobrowse=true&amp;PV%21unit=sales&amp;PV%21language=english&amp;PV%21Section=general&amp;PV%21Topic=home-page&amp;PV%21pageLoadTime=5%20sec&amp;PV%21visitorActive=1&amp;title=Customer%20Experience%20Management%20and%20Live%20Chat%20Software&amp;cookie=has_js%3D1%3B%20__utma%3D140343598.906852260.1352291450.1352291450.1352291450.1%3B%20__utmb%3D140343598.1.10.1352291450%3B%20__utmc%3D140343598%3B%20__utmz%3D140343598.1352291450.1.1.utmcsr%3D%28direct%29%7Cutmccn%3D%28direct%29%7Cutmcmd%3D%28none%29%3B%20WRUID%3D0%3B%20_mkto_trk%3Did%3A501-BLE-979%26token%3A_mch-liveperson.com-1352291454321-16056%3B%20__atuvc%3D1%257C45 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:30:57 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Set-Cookie: LivePersonID=-497011465085-1352291456:0; expires=Thu, 07-Nov-2013 12:30:56 GMT; path=/hc/84421077; domain=.liveperson.net HumanClickKEY=586681021337687857; path=/hc/84421077 HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077 LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; expires=Thu, 07-Nov-2013 12:30:56 GMT; path=/hc/84421077; domain=.liveperson.net
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:30:56 GMT
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 10103
GET /hc/84421077/?&site=84421077&cmd=mTagUrl&lpCallId=835220908633-373493404952&protV=20&lpjson=1&SV%21impression-query-name=chat-sales-general-english-1&SV%21impression-query-room=chat-sales-general-english-1&id=5736989141&info=button-impression%3Achat-sales-general-english-1%28Customer%20Experience%20Management%20and%20Live%20Chat%20Software%29&waitForVisitor=true&d=1352291457077&page=http%3A//base.liveperson.net/hcp/width/img40.gif HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?&amp;site=84421077&amp;cmd=mTagUrl&amp;lpCallId=835220908633-373493404952&amp;protV=20&amp;lpjson=1&amp;SV%21impression-query-name=chat-sales-general-english-1&amp;SV%21impression-query-room=chat-sales-general-english-1&amp;id=5736989141&amp;info=button-impression%3Achat-sales-general-english-1%28Customer%20Experience%20Management%20and%20Live%20Chat%20Software%29&amp;waitForVisitor=true&amp;d=1352291457077&amp;page=http%3A//base.liveperson.net/hcp/width/img40.gif HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; HumanClickSiteContainerID_84421077=STANDALONE; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:30:57 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:30:57 GMT
Set-Cookie: HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 119
GET /hc/84421077/?&site=84421077&cmd=mTagUrl&lpCallId=273655658523-454614579077&protV=20&lpjson=1&SV%21impression-query-name=voice-sales-general-english-1&SV%21impression-query-room=voice-sales-general-english-1&id=5736989141&info=button-impression%3Avoice-sales-general-english-1%28Customer%20Experience%20Management%20and%20Live%20Chat%20Software%29&waitForVisitor=true&d=1352291457083&page=http%3A//base.liveperson.net/hcp/width/img40.gif HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?&amp;site=84421077&amp;cmd=mTagUrl&amp;lpCallId=273655658523-454614579077&amp;protV=20&amp;lpjson=1&amp;SV%21impression-query-name=voice-sales-general-english-1&amp;SV%21impression-query-room=voice-sales-general-english-1&amp;id=5736989141&amp;info=button-impression%3Avoice-sales-general-english-1%28Customer%20Experience%20Management%20and%20Live%20Chat%20Software%29&amp;waitForVisitor=true&amp;d=1352291457083&amp;page=http%3A//base.liveperson.net/hcp/width/img40.gif HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; HumanClickSiteContainerID_84421077=STANDALONE; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:30:57 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:30:57 GMT
Set-Cookie: HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 119
GET /hc/84421077/?&site=84421077&cmd=mTagUrl&lpCallId=777346991685-124436375092&protV=20&lpjson=1&SV%21impression-query-name=chat-sales-general-english-2&SV%21impression-query-room=chat-sales-general-english-2&id=5736989141&info=button-impression%3Achat-sales-general-english-2%28Customer%20Experience%20Management%20and%20Live%20Chat%20Software%29&waitForVisitor=true&d=1352291457079&page=http%3A//base.liveperson.net/hcp/width/img40.gif HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?&amp;site=84421077&amp;cmd=mTagUrl&amp;lpCallId=777346991685-124436375092&amp;protV=20&amp;lpjson=1&amp;SV%21impression-query-name=chat-sales-general-english-2&amp;SV%21impression-query-room=chat-sales-general-english-2&amp;id=5736989141&amp;info=button-impression%3Achat-sales-general-english-2%28Customer%20Experience%20Management%20and%20Live%20Chat%20Software%29&amp;waitForVisitor=true&amp;d=1352291457079&amp;page=http%3A//base.liveperson.net/hcp/width/img40.gif HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; HumanClickSiteContainerID_84421077=STANDALONE; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:30:57 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:30:57 GMT
Set-Cookie: HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 119
GET /hc/84421077/?&site=84421077&cmd=mTagInPage&lpCallId=976618941651-403804340695&protV=20&lpjson=1&page=http%3A//www.liveperson.com/&id=5736989141&javaSupport=true&visitorStatus=INSITE_STATUS&defInvite=chat-sales-english&activePlugin=none&cobrowse=true HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?&amp;site=84421077&amp;cmd=mTagInPage&amp;lpCallId=976618941651-403804340695&amp;protV=20&amp;lpjson=1&amp;page=http%3A//www.liveperson.com/&amp;id=5736989141&amp;javaSupport=true&amp;visitorStatus=INSITE_STATUS&amp;defInvite=chat-sales-english&amp;activePlugin=none&amp;cobrowse=true HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; HumanClickSiteContainerID_84421077=STANDALONE; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:30:57 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Set-Cookie: HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:30:57 GMT
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 2130
POST / HTTP/1.1

Host: ocsp.thawte.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Content-Length: 115
Content-Type: application/ocsp-request
HTTP/1.0 200 Ok

Content-Type: application/ocsp-response
Last-Modified: Mon, 05 Nov 2012 21:42:48 GMT
Expires: Mon, 12 Nov 2012 21:42:48 GMT
Content-Transfer-Encoding: binary
Content-Length: 1165
Cache-Control: max-age=465111, public, no-transform, must-revalidate
Date: Wed, 07 Nov 2012 12:30:57 GMT
nncoection: close
Connection: Keep-Alive
GET //openx_a/www/delivery/al.php?zoneid=162&source=214d9d326525e26f7f7b9cbf67f96b2|de6f74539dc3de854371bec2a7a3da&ControlGroup=false HTTP/1.1

Host: a.iad.lpsnmedia.net
GET //openx_a/www/delivery/al.php?zoneid=162&amp;source=214d9d326525e26f7f7b9cbf67f96b2|de6f74539dc3de854371bec2a7a3da&amp;ControlGroup=false HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=UTF-8
Date: Wed, 07 Nov 2012 12:30:57 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
lp-rp: d05, w05
Content-Length: 0
Set-Cookie: OAID=06616d805c69b1ae01b0661e5f015edc; expires=Thu, 07-Nov-2013 12:30:57 GMT; path=/
Keep-Alive: timeout=15, max=200
Connection: Keep-Alive
GET //openx_a/www/delivery/al.php?zoneid=162&source=6f14c075c5227974498e13e4a3e72173|b7cb4377e4219116be76b0c4c18bff8|2355b41e44cc7dd1d1fbbc4236478c6|214d9d326525e26f7f7b9cbf67f96b2|de6f74539dc3de854371bec2a7a3da&ControlGroup=false HTTP/1.1

Host: a.iad.lpsnmedia.net
GET //openx_a/www/delivery/al.php?zoneid=162&amp;source=6f14c075c5227974498e13e4a3e72173|b7cb4377e4219116be76b0c4c18bff8|2355b41e44cc7dd1d1fbbc4236478c6|214d9d326525e26f7f7b9cbf67f96b2|de6f74539dc3de854371bec2a7a3da&amp;ControlGroup=false HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
HTTP/1.1 200 OK

Content-Type: application/x-javascript; charset=UTF-8
Date: Wed, 07 Nov 2012 12:30:57 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Pragma: no-cache
Cache-Control: private, max-age=0, no-cache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
P3P: CP=&quot;CUR ADM OUR NOR STA NID&quot;
lp-rp: d01, w05
Content-Length: 0
Set-Cookie: OAID=3cfce825274fd9e0ab6011194ab552da; expires=Thu, 07-Nov-2013 12:30:58 GMT; path=/
Keep-Alive: timeout=15, max=200
Connection: Keep-Alive
GET /hc/84421077/?lpCallId=754971599315-778100632785&protV=20&lpjson=5&site=84421077&cmd=leVisitorEvent&type=impression&appKey=f907f2d9acd64b7f8c00b83bed3c2822&data=dynBut%3A76 HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?lpCallId=754971599315-778100632785&amp;protV=20&amp;lpjson=5&amp;site=84421077&amp;cmd=leVisitorEvent&amp;type=impression&amp;appKey=f907f2d9acd64b7f8c00b83bed3c2822&amp;data=dynBut%3A76 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; HumanClickSiteContainerID_84421077=STANDALONE; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:30:58 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:30:58 GMT
Set-Cookie: HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 94
GET /sites/all/themes/liveperson/images/topright_clicktochat.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WRUID=0; _mkto_trk=id:501-BLE-979&amp;token:_mch-liveperson.com-1352291454321-16056; __atuvc=1%7C45
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:58 GMT
Expires: 11/8/2012 7:30:58 AM
Server: Microsoft-IIS/6.0
machiene: CoLo:web3
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /sites/all/themes/liveperson/images/footer_clicktochat.png HTTP/1.1

Host: www.liveperson.com

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: has_js=1; __utma=140343598.906852260.1352291450.1352291450.1352291450.1; __utmb=140343598.1.10.1352291450; __utmc=140343598; __utmz=140343598.1352291450.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WRUID=0; _mkto_trk=id:501-BLE-979&amp;token:_mch-liveperson.com-1352291454321-16056; __atuvc=1%7C45
HTTP/1.1 200 OK

Content-Type: image/png
Cache-Control: private
Date: Wed, 07 Nov 2012 12:30:58 GMT
Expires: 11/8/2012 7:30:58 AM
Server: Microsoft-IIS/6.0
machine: CoLo:web4
X-Powered-By: ASP.NET
X-AspNet-Version: 4.0.30319
Content-Encoding: gzip
Vary: Accept-Encoding
Transfer-Encoding: chunked
GET /hc/84421077/?lpCallId=612844714790-870947073117&protV=20&lpjson=5&site=84421077&cmd=leVisitorEvent&type=impression&appKey=f907f2d9acd64b7f8c00b83bed3c2822&data=dynBut%3A77 HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?lpCallId=612844714790-870947073117&amp;protV=20&amp;lpjson=5&amp;site=84421077&amp;cmd=leVisitorEvent&amp;type=impression&amp;appKey=f907f2d9acd64b7f8c00b83bed3c2822&amp;data=dynBut%3A77 HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; HumanClickSiteContainerID_84421077=STANDALONE; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:30:58 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:30:58 GMT
Set-Cookie: HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 94
GET /hc/84421077/?&site=84421077&cmd=mTagInPage&lpCallId=211094771177-969819592911&protV=20&lpjson=1&page=http%3A//www.liveperson.com/&id=5736989141&javaSupport=true&visitorStatus=INSITE_STATUS&defInvite=chat-sales-english&activePlugin=none&cobrowse=true HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?&amp;site=84421077&amp;cmd=mTagInPage&amp;lpCallId=211094771177-969819592911&amp;protV=20&amp;lpjson=1&amp;page=http%3A//www.liveperson.com/&amp;id=5736989141&amp;javaSupport=true&amp;visitorStatus=INSITE_STATUS&amp;defInvite=chat-sales-english&amp;activePlugin=none&amp;cobrowse=true HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; HumanClickSiteContainerID_84421077=STANDALONE; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:31:03 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Set-Cookie: HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:31:03 GMT
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 2130
GET /hc/84421077/?&site=84421077&cmd=mTagUrl&lpCallId=13582474311-487657512482&protV=20&lpjson=1&SV%21impression-query-name=chat-sales-general-english-2&SV%21impression-query-room=chat-sales-general-english-2&id=5736989141&info=button-impression%3Achat-sales-general-english-2%28Customer%20Experience%20Management%20and%20Live%20Chat%20Software%29&waitForVisitor=true&d=1352291468175&page=http%3A//base.liveperson.net/hcp/width/img40.gif HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?&amp;site=84421077&amp;cmd=mTagUrl&amp;lpCallId=13582474311-487657512482&amp;protV=20&amp;lpjson=1&amp;SV%21impression-query-name=chat-sales-general-english-2&amp;SV%21impression-query-room=chat-sales-general-english-2&amp;id=5736989141&amp;info=button-impression%3Achat-sales-general-english-2%28Customer%20Experience%20Management%20and%20Live%20Chat%20Software%29&amp;waitForVisitor=true&amp;d=1352291468175&amp;page=http%3A//base.liveperson.net/hcp/width/img40.gif HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; HumanClickSiteContainerID_84421077=STANDALONE; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:31:08 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:31:08 GMT
Set-Cookie: HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 118
GET /hc/84421077/?&site=84421077&cmd=mTagUrl&lpCallId=900006063092-643471877413&protV=20&lpjson=1&SV%21impression-query-name=chat-sales-general-english-1&SV%21impression-query-room=chat-sales-general-english-1&id=5736989141&info=button-impression%3Achat-sales-general-english-1%28Customer%20Experience%20Management%20and%20Live%20Chat%20Software%29&waitForVisitor=true&d=1352291468174&page=http%3A//base.liveperson.net/hcp/width/img40.gif HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?&amp;site=84421077&amp;cmd=mTagUrl&amp;lpCallId=900006063092-643471877413&amp;protV=20&amp;lpjson=1&amp;SV%21impression-query-name=chat-sales-general-english-1&amp;SV%21impression-query-room=chat-sales-general-english-1&amp;id=5736989141&amp;info=button-impression%3Achat-sales-general-english-1%28Customer%20Experience%20Management%20and%20Live%20Chat%20Software%29&amp;waitForVisitor=true&amp;d=1352291468174&amp;page=http%3A//base.liveperson.net/hcp/width/img40.gif HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; HumanClickSiteContainerID_84421077=STANDALONE; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:31:08 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:31:08 GMT
Set-Cookie: HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 119
GET /hc/84421077/?&site=84421077&cmd=mTagInPage&lpCallId=165376806105-132897213571&protV=20&lpjson=1&page=http%3A//www.liveperson.com/&id=5736989141&javaSupport=true&visitorStatus=INSITE_STATUS&defInvite=chat-sales-english&activePlugin=none&cobrowse=true HTTP/1.1

Host: base.liveperson.net
GET /hc/84421077/?&amp;site=84421077&amp;cmd=mTagInPage&amp;lpCallId=165376806105-132897213571&amp;protV=20&amp;lpjson=1&amp;page=http%3A//www.liveperson.com/&amp;id=5736989141&amp;javaSupport=true&amp;visitorStatus=INSITE_STATUS&amp;defInvite=chat-sales-english&amp;activePlugin=none&amp;cobrowse=true HTTP/1.1

User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101203 Firefox/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.liveperson.com/
Cookie: HumanClickKEY=586681021337687857; LivePersonID=-497011465085-1352291456:-1:-1:-1:-1; HumanClickSiteContainerID_84421077=STANDALONE; ASPSESSIONIDCQAQABDQ=IAKGOMJAHFLIHAGDPHCMHGKB; LivePersonID=LP i=497011465085,d=1352291456; HumanClickACTIVE=1352291456167
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 12:31:08 GMT
Server: Microsoft-IIS/6.0
P3P: CP=&quot;NON BUS INT NAV COM ADM CON CUR IVA IVD OTP PSA PSD TEL SAM&quot;
X-Powered-By: ASP.NET
Set-Cookie: HumanClickSiteContainerID_84421077=STANDALONE; path=/hc/84421077
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 12:31:08 GMT
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 2130