Overview

URLhttp://no.potensmedisin.com/Home.aspx
IP81.17.25.11
ASNAS51852 Private Layer INC
Location Switzerland
Report completed2012-11-07 11:34:10 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 6 reports on ASN: AS51852 Private Layer INC

Date Alerts / IDS URL IP
2013-02-11 16:35:540 / 1http://jpicomponent.info/?e=btos&publisher=708&country=US&ind=1847885495&exid=0 (...)46.19.138.158
2013-02-08 14:33:140 / 0http://movreel.com/9qn5e9xut26u81.17.24.221
2013-02-07 14:23:270 / 0http://best-installer.info81.17.23.197
2013-02-07 08:24:070 / 3http://aa597.rapidgator.xup.pl/46.19.139.50
2013-02-06 22:55:080 / 2http://cbsnews-13.com/news/index2.php?/26014tfw81.17.23.204
2013-02-06 21:30:260 / 0http://mob.howzeh-masumieh.ir/googledoc/googledocss/sss/81.17.18.84



JavaScript

Executed Scripts (73)


Executed Evals (13)

#1 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();

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

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

#3 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);

#4 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', {});
}

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

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

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

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

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

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

#8 JavaScript::Eval (size: 31, repeated: 2)

lpMTag.lpInPageRequestDelay = 30;

#9 JavaScript::Eval (size: 1200, 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.3.0';
lpMTagConfig.serverBuild = '12';
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 = false;

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

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

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

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

#12 JavaScript::Eval (size: 67, repeated: 2)

val.evaluationfunction = RegularExpressionValidatorEvaluateIsValid;

#13 JavaScript::Eval (size: 63, repeated: 3)

val.evaluationfunction = RequiredFieldValidatorEvaluateIsValid;

Executed Writes (1)

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

<div style='z-index:151;position:absolute;left:0px;top:0px;display: none;' id='SmarterInteractiveArea839328125'></div>


HTTP Transactions (100)


Request Response
GET /img/skingroups/011/active/css/font.css HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 404 Not Found

Content-Type: text/html
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:30:06 GMT
Content-Length: 103
Age: 209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: close
GET /img/skingroups/011/active/no/css/lang.css HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: text/css
Last-Modified: Wed, 20 Jul 2011 13:10:43 GMT
Accept-Ranges: bytes
Etag: &quot;a6f5256ede46cc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:41 GMT
Content-Length: 1156
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/css/Home.css HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: text/css
Last-Modified: Wed, 08 Dec 2010 13:09:28 GMT
Accept-Ranges: bytes
Etag: &quot;50b92525d996cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:41 GMT
Content-Length: 6513
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /WL/js/x1/libs/misc/f.js HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Last-Modified: Sun, 05 Jun 2011 10:29:01 GMT
Accept-Ranges: bytes
Etag: &quot;9e892c636b23cc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:41 GMT
Content-Length: 1874
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/_base/active/css/general.css HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: text/css
Last-Modified: Thu, 27 Sep 2012 08:06:00 GMT
Accept-Ranges: bytes
Etag: &quot;0e43aee869ccd1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:40 GMT
Content-Length: 8081
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skins/potensmedisin.com/no/active/css/custom.css HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: text/css
Last-Modified: Thu, 24 Nov 2011 16:44:12 GMT
Accept-Ranges: bytes
Etag: &quot;db14bf4bc8aacc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:41 GMT
Content-Length: 990
Age: 26211
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /Home.aspx HTTP/1.1

Host: no.potensmedisin.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.0 200 OK

Content-Type: text/html; charset=utf-8
Cache-Control: private
Server: Microsoft-IIS/7.5
Set-Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby; path=/; HttpOnly
WL-Version: R7908
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:33:35 GMT
Content-Length: 133346
X-Cache: MISS from S04001011820.privatelayer.ch
X-Cache-Lookup: MISS from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/css/style.css HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: text/css
Last-Modified: Mon, 18 Jun 2012 10:04:16 GMT
Accept-Ranges: bytes
Etag: &quot;7da146b8394dcd1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:40 GMT
Content-Length: 69152
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /WebResource.axd?d=9wN9jILVsafP4__2NAGWsNmv9jbSSMSHOLBXnvikHYQogE_QUW3gILDlHPsIt5KT1H_myDCqThEEkCUhTkutkK3nNoYwN4cjD29-mGhV4Go1&t=634659454188120839 HTTP/1.1

Host: no.potensmedisin.com
GET /WebResource.axd?d=9wN9jILVsafP4__2NAGWsNmv9jbSSMSHOLBXnvikHYQogE_QUW3gILDlHPsIt5KT1H_myDCqThEEkCUhTkutkK3nNoYwN4cjD29-mGhV4Go1&amp;t=634659454188120839 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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Cache-Control: public
Expires: Thu, 07 Nov 2013 09:35:43 GMT
Last-Modified: Mon, 27 Feb 2012 13:16:58 GMT
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:33:35 GMT
Content-Length: 21823
X-Cache: MISS from S04001011820.privatelayer.ch
X-Cache-Lookup: MISS from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /WebResource.axd?d=FIZ15Z0QiagWPwmItH0rzTB21IiS6Rn6d4iMTWf_pqfHPPhHFU15R54TQyWiWqeUUvfXcPR2rrViiTJJqfZW_tLE5jX_3P_y40iAKRoOL-g1&t=634659454188120839 HTTP/1.1

Host: no.potensmedisin.com
GET /WebResource.axd?d=FIZ15Z0QiagWPwmItH0rzTB21IiS6Rn6d4iMTWf_pqfHPPhHFU15R54TQyWiWqeUUvfXcPR2rrViiTJJqfZW_tLE5jX_3P_y40iAKRoOL-g1&amp;t=634659454188120839 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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Cache-Control: public
Expires: Thu, 07 Nov 2013 09:35:43 GMT
Last-Modified: Mon, 27 Feb 2012 13:16:58 GMT
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:33:35 GMT
Content-Length: 21603
X-Cache: MISS from S04001011820.privatelayer.ch
X-Cache-Lookup: MISS from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/flags/de.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Wed, 12 Jan 2011 09:30:18 GMT
Accept-Ranges: bytes
Etag: &quot;301da4533bb2cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:43 GMT
Content-Length: 238
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/flags/ja.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Wed, 12 Jan 2011 09:30:09 GMT
Accept-Ranges: bytes
Etag: &quot;80c0744e3bb2cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:43 GMT
Content-Length: 407
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/flags/dk.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Wed, 12 Jan 2011 09:30:19 GMT
Accept-Ranges: bytes
Etag: &quot;90935e543bb2cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:43 GMT
Content-Length: 309
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/flags/fi.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Wed, 12 Jan 2011 09:30:23 GMT
Accept-Ranges: bytes
Etag: &quot;70cb8f563bb2cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:43 GMT
Content-Length: 331
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/flags/nl.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Wed, 12 Jan 2011 09:30:08 GMT
Accept-Ranges: bytes
Etag: &quot;6075b84d3bb2cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:43 GMT
Content-Length: 298
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/flags/se.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Wed, 12 Jan 2011 09:30:21 GMT
Accept-Ranges: bytes
Etag: &quot;f0919553bb2cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:43 GMT
Content-Length: 367
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericCialis/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:23:46 GMT
Accept-Ranges: bytes
Etag: &quot;20c7ae73453ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:59 GMT
Content-Length: 3281
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericCialis/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:23:52 GMT
Accept-Ranges: bytes
Etag: &quot;6c893db3453ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:44 GMT
Content-Length: 13003
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericLevitra/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:22:29 GMT
Accept-Ranges: bytes
Etag: &quot;10bb2da3353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:58 GMT
Content-Length: 2501
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericLevitra/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Mon, 21 Mar 2011 19:12:57 GMT
Accept-Ranges: bytes
Etag: &quot;b58994fcfbe7cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:46 GMT
Content-Length: 13201
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericViagra/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:20:19 GMT
Accept-Ranges: bytes
Etag: &quot;d023a8c3353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:44 GMT
Content-Length: 6295
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericViagra/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:20:25 GMT
Accept-Ranges: bytes
Etag: &quot;bceaee8f3353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:56 GMT
Content-Length: 11494
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/BrandViagra/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:27:50 GMT
Accept-Ranges: bytes
Etag: &quot;be27ec983453ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:56 GMT
Content-Length: 6295
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/BrandViagra/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:28:02 GMT
Accept-Ranges: bytes
Etag: &quot;907f7ea03453ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:46 GMT
Content-Length: 12868
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/BrandCialis/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:28:21 GMT
Accept-Ranges: bytes
Etag: &quot;461096ab3453ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:46 GMT
Content-Length: 3281
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/BrandCialis/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:28:30 GMT
Accept-Ranges: bytes
Etag: &quot;286c25b13453ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:57 GMT
Content-Length: 12698
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/BrandLevitra/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:28:06 GMT
Accept-Ranges: bytes
Etag: &quot;6664cba23453ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:46 GMT
Content-Length: 2501
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericViagraProfessional/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:20:08 GMT
Accept-Ranges: bytes
Etag: &quot;a475d6853353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:57 GMT
Content-Length: 6295
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericViagraProfessional/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:20:14 GMT
Accept-Ranges: bytes
Etag: &quot;eabf8d893353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:46 GMT
Content-Length: 13553
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericCialisProfessional/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:23:32 GMT
Accept-Ranges: bytes
Etag: &quot;90c48fff3353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:57 GMT
Content-Length: 3281
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericCialisProfessional/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:23:38 GMT
Accept-Ranges: bytes
Etag: &quot;82241c33453ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:51 GMT
Content-Length: 11421
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/WomenraFemaleViagra/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 26 Nov 2009 15:33:46 GMT
Accept-Ranges: bytes
Etag: &quot;96e4d8d7ad6eca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:58 GMT
Content-Length: 656
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/BrandLevitra/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Mon, 21 Mar 2011 19:04:24 GMT
Accept-Ranges: bytes
Etag: &quot;84ccd9cafae7cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:46 GMT
Content-Length: 12679
Age: 26210
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/WomenraFemaleViagra/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 26 Nov 2009 15:33:50 GMT
Accept-Ranges: bytes
Etag: &quot;7af02cdaad6eca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:51 GMT
Content-Length: 10614
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericViagraSoftFlavored/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:19:58 GMT
Accept-Ranges: bytes
Etag: &quot;7a1fcb7f3353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:57 GMT
Content-Length: 6295
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericViagraSoftFlavored/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:20:04 GMT
Accept-Ranges: bytes
Etag: &quot;34e33a833353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:51 GMT
Content-Length: 14430
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/Kamagra/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:17:13 GMT
Accept-Ranges: bytes
Etag: &quot;d8588c1d3353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:51 GMT
Content-Length: 2458
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/KamagraOralJelly/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:16:59 GMT
Accept-Ranges: bytes
Etag: &quot;38f8d153353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:51 GMT
Content-Length: 2458
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/KamagraOralJelly/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:17:08 GMT
Accept-Ranges: bytes
Etag: &quot;a4a38c1a3353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:51 GMT
Content-Length: 15203
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericViagraSuperActive/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 22 Nov 2009 16:02:14 GMT
Accept-Ranges: bytes
Etag: &quot;fe334288d6bca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:51 GMT
Content-Length: 6295
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericViagraSuperActive/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 22 Nov 2009 16:02:12 GMT
Accept-Ranges: bytes
Etag: &quot;d0206e278d6bca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:57 GMT
Content-Length: 15364
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/Kamagra/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:17:19 GMT
Accept-Ranges: bytes
Etag: &quot;1ea343213353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:58 GMT
Content-Length: 10168
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericCialisSuperActive/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 22 Nov 2009 16:01:40 GMT
Accept-Ranges: bytes
Etag: &quot;2242e148d6bca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:52 GMT
Content-Length: 3281
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericCialisSuperActive/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 22 Nov 2009 16:01:38 GMT
Accept-Ranges: bytes
Etag: &quot;583cc1128d6bca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:53 GMT
Content-Length: 11128
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericPropecia/160x40.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:20:31 GMT
Accept-Ranges: bytes
Etag: &quot;4e70a1933353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:53 GMT
Content-Length: 3634
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/shipping/deutschePostPic.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 05 Dec 2010 14:48:58 GMT
Accept-Ranges: bytes
Etag: &quot;20d7488c8b94cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:56 GMT
Content-Length: 2030
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/shipping/swedishPostPic.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 05 Dec 2010 14:49:03 GMT
Accept-Ranges: bytes
Etag: &quot;a08b4d8f8b94cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:56 GMT
Content-Length: 1984
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/products/GenericPropecia/86x75.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 22 Oct 2009 16:20:47 GMT
Accept-Ranges: bytes
Etag: &quot;bcd9b9d3353ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:58 GMT
Content-Length: 14210
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/shipping/royalMailPic.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 05 Dec 2010 14:49:01 GMT
Accept-Ranges: bytes
Etag: &quot;d0e3438e8b94cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:56 GMT
Content-Length: 2011
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/shipping/emsPic.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 05 Dec 2010 14:49:00 GMT
Accept-Ranges: bytes
Etag: &quot;e040418d8b94cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:56 GMT
Content-Length: 2482
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/shipping/swissPostPic.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 05 Dec 2010 14:49:05 GMT
Accept-Ranges: bytes
Etag: &quot;708d48908b94cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:59 GMT
Content-Length: 2510
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/shipping/uspsPic.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 05 Dec 2010 14:49:06 GMT
Accept-Ranges: bytes
Etag: &quot;f05a40918b94cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:56 GMT
Content-Length: 2205
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/payments/amexPic.jpg HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/jpeg
Last-Modified: Thu, 29 Oct 2009 17:13:13 GMT
Accept-Ranges: bytes
Etag: &quot;1e4ea18bb58ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:57 GMT
Content-Length: 2332
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/payments/visaPic.jpg HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/jpeg
Last-Modified: Thu, 29 Oct 2009 17:13:23 GMT
Accept-Ranges: bytes
Etag: &quot;5681fc1ebb58ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:58 GMT
Content-Length: 1990
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/payments/jcrPic.jpg HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/jpeg
Last-Modified: Thu, 29 Oct 2009 17:13:21 GMT
Accept-Ranges: bytes
Etag: &quot;bca67c1dbb58ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:56 GMT
Content-Length: 2044
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/payments/dinersPic.jpg HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/jpeg
Last-Modified: Thu, 29 Oct 2009 17:13:17 GMT
Accept-Ranges: bytes
Etag: &quot;ca73211bbb58ca1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:57 GMT
Content-Length: 1745
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/catalog/active/security/trusted.jpg HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/Home.aspx
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/jpeg
Last-Modified: Tue, 07 Apr 2009 12:18:53 GMT
Accept-Ranges: bytes
Etag: &quot;2e655b47bb7c91:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:58 GMT
Content-Length: 4427
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skins/potensmedisin.com/no/active/logo.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skins/potensmedisin.com/no/active/css/custom.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Thu, 24 Nov 2011 16:44:12 GMT
Accept-Ranges: bytes
Etag: &quot;3b76c14bc8aacc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:43 GMT
Content-Length: 5974
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/menuBg.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Mon, 02 Aug 2010 10:53:34 GMT
Accept-Ranges: bytes
Etag: &quot;1a6def43032cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:58 GMT
Content-Length: 115
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/topMenu_boolet.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 05 Sep 2010 18:21:29 GMT
Accept-Ranges: bytes
Etag: &quot;66331f29274dcb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:55 GMT
Content-Length: 122
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/no/contact-bg.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/no/css/lang.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 14 Nov 2010 08:50:15 GMT
Accept-Ranges: bytes
Etag: &quot;30f1f6f4d883cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:43 GMT
Content-Length: 1872
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/no/main.jpg HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/no/css/lang.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/jpeg
Last-Modified: Mon, 30 Jan 2012 14:58:00 GMT
Accept-Ranges: bytes
Etag: &quot;0ccf18e5fdfcc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:43 GMT
Content-Length: 51609
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /ST.ashx?scriptonly=true HTTP/1.1

Host: smartertrack.safecontact.biz

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://no.potensmedisin.com/Home.aspx
HTTP/1.1 200 OK

Content-Type: text/javascript
Cache-Control: no-cache
Pragma: no-cache
Content-Encoding: deflate
Expires: -1
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
Set-Cookie: siteuidut=d6d063d5fda745ffb4ded2f4e7470554; expires=Fri, 07-Nov-2042 10:33:45 GMT; path=/
X-Compressed-By: HttpCompress
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:33:44 GMT
Content-Length: 8463
GET /img/skingroups/011/active/buts/search.gif HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/gif
Last-Modified: Sun, 05 Sep 2010 21:11:52 GMT
Accept-Ranges: bytes
Etag: &quot;b71822f63e4dcb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:44 GMT
Content-Length: 858
Age: 26208
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/catTitle_arr.gif HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/gif
Last-Modified: Sun, 05 Sep 2010 21:20:14 GMT
Accept-Ranges: bytes
Etag: &quot;5f2cb721404dcb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:43 GMT
Content-Length: 870
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/subCat_bg.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Tue, 14 Sep 2010 23:31:40 GMT
Accept-Ranges: bytes
Etag: &quot;6011b5fb6454cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:44 GMT
Content-Length: 159
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/buts/cellSubmitRight.gif HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/Home.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/gif
Last-Modified: Sun, 05 Sep 2010 22:11:00 GMT
Accept-Ranges: bytes
Etag: &quot;6e5cd38474dcb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:57 GMT
Content-Length: 337
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/buts/cellSubmitLeft.gif HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/Home.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/gif
Last-Modified: Sun, 05 Sep 2010 22:11:41 GMT
Accept-Ranges: bytes
Etag: &quot;b6f5a51474dcb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:55 GMT
Content-Length: 937
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/buts/cellSubmitMid.gif HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/Home.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/gif
Last-Modified: Sun, 05 Sep 2010 22:12:08 GMT
Accept-Ranges: bytes
Etag: &quot;60b99461474dcb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:53 GMT
Content-Length: 834
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/cart_bg.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Wed, 20 Oct 2010 09:51:00 GMT
Accept-Ranges: bytes
Etag: &quot;147def4c3c70cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:55 GMT
Content-Length: 667
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/cart_icon.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Wed, 27 Oct 2010 09:37:24 GMT
Accept-Ranges: bytes
Etag: &quot;2054b88fba75cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:55 GMT
Content-Length: 443
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/buts/checkout-button-right.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 05 Sep 2010 20:25:39 GMT
Accept-Ranges: bytes
Etag: &quot;fc5e3c81384dcb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:55 GMT
Content-Length: 454
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/buts/checkout-button-left.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 05 Sep 2010 20:30:10 GMT
Accept-Ranges: bytes
Etag: &quot;80d4e622394dcb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:58 GMT
Content-Length: 432
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/buts/checkout-button-bg.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Sun, 05 Sep 2010 20:24:50 GMT
Accept-Ranges: bytes
Etag: &quot;83c73264384dcb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:55 GMT
Content-Length: 167
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/livehelp.gif HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/gif
Last-Modified: Wed, 15 Sep 2010 01:06:40 GMT
Accept-Ranges: bytes
Etag: &quot;6355cd407254cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:56 GMT
Content-Length: 2183
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /hcp/html/lpCheckRepState.js HTTP/1.1

Host: server.iad.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://no.potensmedisin.com/Home.aspx
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Content-Length: 2491
Content-Location: http://server.iad.liveperson.net/hcp/html/lpCheckRepState.js
Last-Modified: Sun, 23 Oct 2011 18:04:05 GMT
Accept-Ranges: bytes
Etag: &quot;c0fd2527ae91cc1:22e8&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 10:33:38 GMT
GET /img/skingroups/011/active/footerBoolet.jpg HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/css/style.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/jpeg
Last-Modified: Mon, 02 Aug 2010 10:53:13 GMT
Accept-Ranges: bytes
Etag: &quot;c25247e73032cb1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:56 GMT
Content-Length: 304
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /img/skingroups/011/active/no/footer-text.png HTTP/1.1

Host: no.potensmedisin.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://no.potensmedisin.com/img/skingroups/011/active/no/css/lang.css
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby
HTTP/1.0 200 OK

Content-Type: image/png
Last-Modified: Tue, 26 Apr 2011 18:16:58 GMT
Accept-Ranges: bytes
Etag: &quot;60f688213e4cc1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 00:14:59 GMT
Content-Length: 14522
Age: 26209
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: keep-alive
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 06:37:34 GMT
Expires: Mon, 12 Nov 2012 06:37:34 GMT
Content-Transfer-Encoding: binary
Content-Length: 1165
Cache-Control: max-age=417837, public, no-transform, must-revalidate
Date: Wed, 07 Nov 2012 10:33:37 GMT
nncoection: close
Connection: Keep-Alive
GET /services/wfanalytics/collector.js HTTP/1.1

Host: secure.mysecurepay.biz

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://no.potensmedisin.com/Home.aspx
HTTP/1.0 200 OK

Content-Type: application/x-javascript
Last-Modified: Thu, 06 Sep 2012 17:23:17 GMT
Accept-Ranges: bytes
Etag: &quot;4929f4d548ccd1:0&quot;
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:23:25 GMT
Content-Length: 1468
Age: 613
X-Cache: HIT from alexandra.example.com
X-Cache-Lookup: HIT from alexandra.example.com:80
Via: 1.0 alexandra.example.com:80 (squid/2.6.STABLE21)
Connection: keep-alive
GET /ST.ashx?PostID=1817982309&firstrun=true&sendactionscript=true&dt=potensmedisin.com%20-%20ditt%20onlineapotek&ref=&pp=http%3A%2F%2Fno.potensmedisin.com%2FHome.aspx&tzo=-60&visitorId=d6d063d5fda745ffb4ded2f4e7470554&interactId=SmarterInteractiveArea839328125 HTTP/1.1

Host: smartertrack.safecontact.biz
GET /ST.ashx?PostID=1817982309&amp;firstrun=true&amp;sendactionscript=true&amp;dt=potensmedisin.com%20-%20ditt%20onlineapotek&amp;ref=&amp;pp=http%3A%2F%2Fno.potensmedisin.com%2FHome.aspx&amp;tzo=-60&amp;visitorId=d6d063d5fda745ffb4ded2f4e7470554&amp;interactId=SmarterInteractiveArea839328125 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://no.potensmedisin.com/Home.aspx
Cookie: siteuidut=d6d063d5fda745ffb4ded2f4e7470554
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:33:45 GMT
Content-Length: 0
GET /hc/72905796/?cmd=repstate&site=72905796&useSize=true&d=1352284417880 HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?cmd=repstate&amp;site=72905796&amp;useSize=true&amp;d=1352284417880 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://no.potensmedisin.com/Home.aspx
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Date: Wed, 07 Nov 2012 10:33:40 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: /hcp/repState/reponline.gif
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 0
GET /hc/72905796/?cmd=repstate&site=72905796&channel=web&&ver=1&imageUrl=https://secure.checksafe.biz/img/Catalog/active/LivePerson/011/button/ HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?cmd=repstate&amp;site=72905796&amp;channel=web&amp;&amp;ver=1&amp;imageUrl=https://secure.checksafe.biz/img/Catalog/active/LivePerson/011/button/ 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://no.potensmedisin.com/Home.aspx
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Date: Wed, 07 Nov 2012 10:33:37 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: https://secure.checksafe.biz/img/Catalog/active/LivePerson/011/button/reponline.gif?d=1352284417927
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 0
GET /hcp/repState/reponline.gif HTTP/1.1

Host: server.iad.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: 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://no.potensmedisin.com/Home.aspx
HTTP/1.1 200 OK

Content-Type: image/gif
Content-Length: 80
Content-Location: http://server.iad.liveperson.net/hcp/repState/reponline.gif
Last-Modified: Sun, 23 Oct 2011 18:04:05 GMT
Accept-Ranges: bytes
Etag: &quot;c0fd2527ae91cc1:22e8&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 10:33:39 GMT
GET /favicon.ico HTTP/1.1

Host: no.potensmedisin.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
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby; wfsid=5635869302232616; wfsessionid=4292162408369913; siteuidut=d6d063d5fda745ffb4ded2f4e7470554
HTTP/1.0 404 Not Found

Content-Type: text/html
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:29:08 GMT
Content-Length: 103
Age: 270
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: close
GET /hcp/html/mTag.js?site=72905796 HTTP/1.1

Host: server.iad.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://no.potensmedisin.com/Home.aspx
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Content-Length: 17334
Content-Location: https://server.iad.liveperson.net/lpWeb/default_SMB//hcpv/emt/mtag.js?site=72905796
Last-Modified: Thu, 31 May 2012 20:06:29 GMT
Accept-Ranges: bytes
Etag: &quot;60c5cde683fcd1:22ce&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 10:33:37 GMT
GET /hc/72905796/?&site=72905796&cmd=mTagKnockPage&lpCallId=908035206981-855801866025&protV=20&lpjson=1&id=8626471360&javaSupport=true&visitorStatus=INSITE_STATUS HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?&amp;site=72905796&amp;cmd=mTagKnockPage&amp;lpCallId=908035206981-855801866025&amp;protV=20&amp;lpjson=1&amp;id=8626471360&amp;javaSupport=true&amp;visitorStatus=INSITE_STATUS 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://no.potensmedisin.com/Home.aspx
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 10:33:38 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=121330191696013,d=1352284418; expires=Thu, 07-Nov-2013 10:33:38 GMT; path=/; domain=.liveperson.net HumanClickKEY=393545929388629228; path=/hc/72905796 HumanClickACTIVE=1352284418815; expires=Thu, 08-Nov-2012 10:33:38 GMT; path=/
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 10:33:38 GMT
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 1517
GET /hc/72905796/?&site=72905796&cmd=mTagStartPage&lpCallId=252197812570-861154168612&protV=20&lpjson=1&page=http%3A//no.potensmedisin.com/Home.aspx&id=8626471360&javaSupport=true&visitorStatus=INSITE_STATUS&activePlugin=none&cobrowse=true&PV%21visitorActive=1&title=potensmedisin.com%20-%20ditt%20onlineapotek&cookie=wfsid%3D5635869302232616%3B%20wfsessionid%3D4292162408369913%3B%20siteuidut%3Dd6d063d5fda745ffb4ded2f4e7470554 HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?&amp;site=72905796&amp;cmd=mTagStartPage&amp;lpCallId=252197812570-861154168612&amp;protV=20&amp;lpjson=1&amp;page=http%3A//no.potensmedisin.com/Home.aspx&amp;id=8626471360&amp;javaSupport=true&amp;visitorStatus=INSITE_STATUS&amp;activePlugin=none&amp;cobrowse=true&amp;PV%21visitorActive=1&amp;title=potensmedisin.com%20-%20ditt%20onlineapotek&amp;cookie=wfsid%3D5635869302232616%3B%20wfsessionid%3D4292162408369913%3B%20siteuidut%3Dd6d063d5fda745ffb4ded2f4e7470554 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://no.potensmedisin.com/Home.aspx
Cookie: HumanClickKEY=393545929388629228; LivePersonID=LP i=121330191696013,d=1352284418; HumanClickACTIVE=1352284418815
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 10:33:38 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=-121330191696013-1352284418:0; expires=Thu, 07-Nov-2013 10:33:38 GMT; path=/hc/72905796; domain=.liveperson.net HumanClickKEY=393545929388629228; path=/hc/72905796 HumanClickSiteContainerID_72905796=STANDALONE; path=/hc/72905796 LivePersonID=-121330191696013-1352284418:-1:-1:-1:-1; expires=Thu, 07-Nov-2013 10:33:38 GMT; path=/hc/72905796; domain=.liveperson.net
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 10:33:38 GMT
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 2254
GET /hc/72905796/?cmd=repstate&site=72905796&channel=web&&ver=1&imageUrl=https://secure.checksafe.biz/img/Catalog/active/LivePerson/011/button/&monitor=1&d=1352284419120 HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?cmd=repstate&amp;site=72905796&amp;channel=web&amp;&amp;ver=1&amp;imageUrl=https://secure.checksafe.biz/img/Catalog/active/LivePerson/011/button/&amp;monitor=1&amp;d=1352284419120 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://no.potensmedisin.com/Home.aspx
Cookie: HumanClickKEY=393545929388629228; LivePersonID=-121330191696013-1352284418:-1:-1:-1:-1; HumanClickSiteContainerID_72905796=STANDALONE; LivePersonID=LP i=121330191696013,d=1352284418; HumanClickACTIVE=1352284418815
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Date: Wed, 07 Nov 2012 10:33:38 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_72905796=STANDALONE; path=/hc/72905796
Location: https://secure.checksafe.biz/img/Catalog/active/LivePerson/011/button/reponline.gif?d=1352284419115
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 0
GET /hc/72905796/?&site=72905796&cmd=mTagInPage&lpCallId=583329971404-1406955734&protV=20&lpjson=1&page=http%3A//no.potensmedisin.com/Home.aspx&id=8626471360&javaSupport=true&visitorStatus=INSITE_STATUS&activePlugin=none&cobrowse=true HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?&amp;site=72905796&amp;cmd=mTagInPage&amp;lpCallId=583329971404-1406955734&amp;protV=20&amp;lpjson=1&amp;page=http%3A//no.potensmedisin.com/Home.aspx&amp;id=8626471360&amp;javaSupport=true&amp;visitorStatus=INSITE_STATUS&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://no.potensmedisin.com/Home.aspx
Cookie: HumanClickKEY=393545929388629228; LivePersonID=-121330191696013-1352284418:-1:-1:-1:-1; HumanClickSiteContainerID_72905796=STANDALONE; LivePersonID=LP i=121330191696013,d=1352284418; HumanClickACTIVE=1352284418815
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 07 Nov 2012 10:33:39 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_72905796=STANDALONE; path=/hc/72905796
Accept-Ranges: bytes
Last-Modified: Wed, 07 Nov 2012 10:33:39 GMT
Cache-Control: no-store
Pragma: no-cache
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 186
GET /favicon.ico HTTP/1.1

Host: no.potensmedisin.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
Cookie: ASP.NET_SessionId=iy1pztwm2lwrhn5kfg4twuby; wfsid=5635869302232616; wfsessionid=4292162408369913; siteuidut=d6d063d5fda745ffb4ded2f4e7470554
HTTP/1.0 404 Not Found

Content-Type: text/html
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:29:08 GMT
Content-Length: 103
Age: 273
X-Cache: HIT from S04001011820.privatelayer.ch
X-Cache-Lookup: HIT from S04001011820.privatelayer.ch:80
Via: 1.0 S04001011820.privatelayer.ch:80 (squid/2.6.STABLE21)
Connection: close
GET /hc/72905796/?cmd=repstate&site=72905796&useSize=true&d=1352284423872 HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?cmd=repstate&amp;site=72905796&amp;useSize=true&amp;d=1352284423872 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://no.potensmedisin.com/Home.aspx
Cookie: HumanClickKEY=393545929388629228; LivePersonID=-121330191696013-1352284418:-1:-1:-1:-1; HumanClickSiteContainerID_72905796=STANDALONE; LivePersonID=LP i=121330191696013,d=1352284418; HumanClickACTIVE=1352284418815
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Date: Wed, 07 Nov 2012 10:33:54 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_72905796=STANDALONE; path=/hc/72905796
Location: /hcp/repState/reponline.gif
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 0
GET /ST.ashx?PostID=1165276132&ref=&dt=potensmedisin.com%20-%20ditt%20onlineapotek&pp=http%3A%2F%2Fno.potensmedisin.com%2FHome.aspx&tzo=-60&visitorId=d6d063d5fda745ffb4ded2f4e7470554&interactId=SmarterInteractiveArea839328125 HTTP/1.1

Host: smartertrack.safecontact.biz
GET /ST.ashx?PostID=1165276132&amp;ref=&amp;dt=potensmedisin.com%20-%20ditt%20onlineapotek&amp;pp=http%3A%2F%2Fno.potensmedisin.com%2FHome.aspx&amp;tzo=-60&amp;visitorId=d6d063d5fda745ffb4ded2f4e7470554&amp;interactId=SmarterInteractiveArea839328125 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://no.potensmedisin.com/Home.aspx
Cookie: siteuidut=d6d063d5fda745ffb4ded2f4e7470554
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:33:54 GMT
Content-Length: 0
GET /hc/72905796/?cmd=repstate&site=72905796&useSize=true&d=1352284428872 HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?cmd=repstate&amp;site=72905796&amp;useSize=true&amp;d=1352284428872 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://no.potensmedisin.com/Home.aspx
Cookie: HumanClickKEY=393545929388629228; LivePersonID=-121330191696013-1352284418:-1:-1:-1:-1; HumanClickSiteContainerID_72905796=STANDALONE; LivePersonID=LP i=121330191696013,d=1352284418; HumanClickACTIVE=1352284418815
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Date: Wed, 07 Nov 2012 10:33:59 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_72905796=STANDALONE; path=/hc/72905796
Location: /hcp/repState/reponline.gif
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 0
GET /hc/72905796/?cmd=repstate&site=72905796&useSize=true&d=1352284433873 HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?cmd=repstate&amp;site=72905796&amp;useSize=true&amp;d=1352284433873 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://no.potensmedisin.com/Home.aspx
Cookie: HumanClickKEY=393545929388629228; LivePersonID=-121330191696013-1352284418:-1:-1:-1:-1; HumanClickSiteContainerID_72905796=STANDALONE; LivePersonID=LP i=121330191696013,d=1352284418; HumanClickACTIVE=1352284418815
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Date: Wed, 07 Nov 2012 10:34:04 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_72905796=STANDALONE; path=/hc/72905796
Location: /hcp/repState/reponline.gif
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 0
GET /ST.ashx?PostID=131796794&ref=&dt=potensmedisin.com%20-%20ditt%20onlineapotek&pp=http%3A%2F%2Fno.potensmedisin.com%2FHome.aspx&tzo=-60&visitorId=d6d063d5fda745ffb4ded2f4e7470554&interactId=SmarterInteractiveArea839328125 HTTP/1.1

Host: smartertrack.safecontact.biz
GET /ST.ashx?PostID=131796794&amp;ref=&amp;dt=potensmedisin.com%20-%20ditt%20onlineapotek&amp;pp=http%3A%2F%2Fno.potensmedisin.com%2FHome.aspx&amp;tzo=-60&amp;visitorId=d6d063d5fda745ffb4ded2f4e7470554&amp;interactId=SmarterInteractiveArea839328125 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://no.potensmedisin.com/Home.aspx
Cookie: siteuidut=d6d063d5fda745ffb4ded2f4e7470554
HTTP/1.1 200 OK

Content-Type: image/gif
Cache-Control: no-cache
Pragma: no-cache
Expires: -1
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Wed, 07 Nov 2012 10:34:02 GMT
Content-Length: 0
GET /hc/72905796/?cmd=repstate&site=72905796&useSize=true&d=1352284417880 HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?cmd=repstate&amp;site=72905796&amp;useSize=true&amp;d=1352284417880 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://no.potensmedisin.com/Home.aspx


GET /img/Catalog/active/LivePerson/011/button/reponline.gif?d=1352284419115 HTTP/1.1

Host: secure.checksafe.biz

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://no.potensmedisin.com/Home.aspx


GET /img/Catalog/active/LivePerson/011/button/reponline.gif?d=1352284417927 HTTP/1.1

Host: secure.checksafe.biz

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://no.potensmedisin.com/Home.aspx


GET /hc/72905796/?cmd=repstate&site=72905796&useSize=true&d=1352284438873 HTTP/1.1

Host: server.iad.liveperson.net
GET /hc/72905796/?cmd=repstate&amp;site=72905796&amp;useSize=true&amp;d=1352284438873 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://no.potensmedisin.com/Home.aspx
Cookie: HumanClickKEY=393545929388629228; LivePersonID=-121330191696013-1352284418:-1:-1:-1:-1; HumanClickSiteContainerID_72905796=STANDALONE; LivePersonID=LP i=121330191696013,d=1352284418; HumanClickACTIVE=1352284418815
HTTP/1.1 302 Moved Temporarily

HTTP/1.1 302 Moved Temporarily
Date: Wed, 07 Nov 2012 10:34:09 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_72905796=STANDALONE; path=/hc/72905796
Location: /hcp/repState/reponline.gif
Expires: Wed, 31 Dec 1969 23:59:59 GMT
Content-Length: 0