Overview

URLhttp://alkhayriairaq.com/
IP184.172.133.114
ASNAS36351 SoftLayer Technologies Inc.
Location United States
Report completed2012-11-21 07:10:37 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
Timestamp Source IP Destination IP Severity Alert
2012-11-21 07:10:02 184.172.133.114 urlQuery Client1FILE-FLASH Adobe Flash Player embedded JPG image width overflow attempt


Recent reports on same IP/ASN/Domain

Last 6 reports on IP: 184.172.133.114

Date Alerts / IDS URL IP
2013-01-10 08:41:550 / 3http://www.alkhayriairaq.net/new2/en/index.php?article_id=27184.172.133.114
2013-01-09 13:28:120 / 1http://www.alkhayriairaq.net/new2/en/index.php?article_id=27184.172.133.114
2013-01-09 09:35:550 / 3http://alkhayriairaq.net/new2/en/index.php?article_id=27184.172.133.114
2013-01-09 08:58:310 / 3http://www.alkhayriairaq.net/new2/en/index.php?article_id=27184.172.133.114
2013-01-09 00:31:350 / 3http://alkhayriairaq.net/new2/en/index.php?id=3D33184.172.133.114
2013-01-08 16:56:460 / 3http://alkhayriairaq.net/new2/en/index.php?article_id=27184.172.133.114

Last 6 reports on ASN: AS36351 SoftLayer Technologies Inc.

Date Alerts / IDS URL IP
2013-02-19 05:20:380 / 3http://452.1000manerasdeganardinero.com/50.116.64.136
2013-02-19 05:08:070 / 2http://cevatpasa.com/images/logos.gif?1c58a=58053037.18.176.75
2013-02-19 05:02:330 / 1http://aljawalat.com/logos.gif?2197d=68798537.58.85.28
2013-02-19 05:02:280 / 1http://aljawalat.com/logos.gif?2239f=70095537.58.85.28
2013-02-19 05:02:240 / 1http://aljawalat.com/logos.gif?1ee9e=63311037.58.85.28
2013-02-19 05:02:050 / 1http://aljawalat.com/logos.gif?19cfa=31716637.58.85.28



JavaScript

Executed Scripts (34)


Executed Evals (18)

#1 JavaScript::Eval (size: 2911, repeated: 1)

Array.prototype.______array = "______array";
JSON = {
    org: "http://www.JSON.org",
    copyright: "(c)2005 JSON.org",
    license: "http://www.crockford.com/JSON/license.html",
    stringify: function(_1) {
        var c, i, l, s = "",
            v;
        switch (typeof _1) {
        case "object":
            if (_1) {
                if (_1.______array == "______array") {
                    for (i = 0; i < _1.length; ++i) {
                        v = this.stringify(_1[i]);
                        if (s) {
                            s += ",";
                        }
                        s += v;
                    }
                    return "[" + s + "]";
                } else {
                    if (typeof _1.toString != "undefined") {
                        for (i in _1) {
                            v = _1[i];
                            if (typeof v != "undefined" && typeof v != "function") {
                                v = this.stringify(v);
                                if (s) {
                                    s += ",";
                                }
                                s += this.stringify(i) + ":" + v;
                            }
                        }
                        return "{" + s + "}";
                    }
                }
            }
            return "null";
        case "number":
            return isFinite(_1) ? String(_1) : "null";
        case "string":
            l = _1.length;
            s = "\"";
            for (i = 0; i < l; i += 1) {
                c = _1.charAt(i);
                if (c >= " ") {
                    if (c == "\\" || c == "\"") {
                        s += "\\";
                    }
                    s += c;
                } else {
                    switch (c) {
                    case "\b":
                        s += "\\b";
                        break;
                    case "\f":
                        s += "\\f";
                        break;
                    case "\n":
                        s += "\\n";
                        break;
                    case "\r":
                        s += "\\r";
                        break;
                    case "\t":
                        s += "\\t";
                        break;
                    default:
                        c = c.charCodeAt();
                        s += "\\u00" + Math.floor(c / 16).toString(16) + (c % 16).toString(16);
                    }
                }
            }
            return s + "\"";
        case "boolean":
            return String(_1);
        default:
            return "null";
        }
    },
    parse: function(_3) {
        var at = 0;
        var ch = " ";

        function error(m) {
            throw {
                name: "JSONError",
                message: m,
                at: at - 1,
                text: _3
            };
        }

        function next() {
            ch = _3.charAt(at);
            at += 1;
            return ch;
        }

        function white() {
            while (ch != "" && ch <= " ") {
                next();
            }
        }

        function str() {
            var i, s = "",
                t, u;
            if (ch == "\"") {
                outer: while (next()) {
                    if (ch == "\"") {
                        next();
                        return s;
                    } else {
                        if (ch == "\\") {
                            switch (next()) {
                            case "b":
                                s += "\b";
                                break;
                            case "f":
                                s += "\f";
                                break;
                            case "n":
                                s += "\n";
                                break;
                            case "r":
                                s += "\r";
                                break;
                            case "t":
                                s += "\t";
                                break;
                            case "u":
                                u = 0;
                                for (i = 0; i < 4; i += 1) {
                                    t = parseInt(next(), 16);
                                    if (!isFinite(t)) {
                                        break outer;
                                    }
                                    u = u * 16 + t;
                                }
                                s += String.fromCharCode(u);
                                break;
                            default:
                                s += ch;
                            }
                        } else {
                            s += ch;
                        }
                    }
                }
            }
            error("Bad string");
        }

        function arr() {
            var a = [];
            if (ch == "[") {
                next();
                white();
                if (ch == "]") {
                    next();
                    return a;
                }
                while (ch) {
                    a.push(val());
                    white();
                    if (ch == "]") {
                        next();
                        return a;
                    } else {
                        if (ch != ",") {
                            break;
                        }
                    }
                    next();
                    white();
                }
            }
            error("Bad array");
        }

        function obj() {
            var k, o = {};
            if (ch == "{") {
                next();
                white();
                if (ch == "}") {
                    next();
                    return o;
                }
                while (ch) {
                    k = str();
                    white();
                    if (ch != ":") {
                        break;
                    }
                    next();
                    o[k] = val();
                    white();
                    if (ch == "}") {
                        next();
                        return o;
                    } else {
                        if (ch != ",") {
                            break;
                        }
                    }
                    next();
                    white();
                }
            }
            error("Bad object");
        }

        function num() {
            var n = "",
                v;
            if (ch == "-") {
                n = "-";
                next();
            }
            while (ch >= "0" && ch <= "9") {
                n += ch;
                next();
            }
            if (ch == ".") {
                n += ".";
                while (next() && ch >= "0" && ch <= "9") {
                    n += ch;
                }
            }
            if (ch == "e" || ch == "E") {
                n += "e";
                next();
                if (ch == "-" || ch == "+") {
                    n += ch;
                    next();
                }
                while (ch >= "0" && ch <= "9") {
                    n += ch;
                    next();
                }
            }
            v = +n;
            if (!isFinite(v)) {
                error("Bad number");
            } else {
                return v;
            }
        }

        function word() {
            switch (ch) {
            case "t":
                if (next() == "r" && next() == "u" && next() == "e") {
                    next();
                    return true;
                }
                break;
            case "f":
                if (next() == "a" && next() == "l" && next() == "s" && next() == "e") {
                    next();
                    return false;
                }
                break;
            case "n":
                if (next() == "u" && next() == "l" && next() == "l") {
                    next();
                    return null;
                }
                break;
            }
            error("Syntax error");
        }

        function val() {
            white();
            switch (ch) {
            case "{":
                return obj();
            case "[":
                return arr();
            case "\"":
                return str();
            case "-":
                return num();
            default:
                return ch >= "0" && ch <= "9" ? num() : word();
            }
        }
        return val();
    }
};

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

Kore.BrowserCheck = Class.create();
Kore.BrowserCheck.prototype = {
    initialize: function() {
        var b = navigator.appName.toString();
        var up = navigator.platform.toString();
        var ua = navigator.userAgent.toString();
        this.mozilla = this.ie = this.opera = r = false;
        var _4 = /Opera.([0-9\.]*)/i;
        var _5 = /MSIE.([0-9\.]*)/i;
        var _6 = /gecko/i;
        var _7 = /safari\/([\d\.]*)/i;
        if (ua.match(_4)) {
            r = ua.match(_4);
            this.opera = true;
            this.version = parseFloat(r[1]);
        } else {
            if (ua.match(_5)) {
                r = ua.match(_5);
                this.ie = true;
                this.version = parseFloat(r[1]);
            } else {
                if (ua.match(_7)) {
                    this.mozilla = true;
                    this.safari = true;
                    this.version = 1.4;
                } else {
                    if (ua.match(_6)) {
                        var _8 = /rv:\s*([0-9\.]+)/i;
                        r = ua.match(_8);
                        this.mozilla = true;
                        this.version = parseFloat(r[1]);
                    }
                }
            }
        }
        this.windows = this.mac = this.linux = false;
        this.Platform = ua.match(/windows/i) ? "windows" : (ua.match(/linux/i) ? "linux" : (ua.match(/mac/i) ? "mac" : ua.match(/unix/i) ? "unix" : "unknown"));
        this[this.Platform] = true;
        this.v = this.version;
        this.valid = this.ie && this.v >= 6 || this.mozilla && this.v >= 1.4;
        if (this.safari && this.mac && this.mozilla) {
            this.mozilla = false;
        }
    }
};
Kore.is = new Kore.BrowserCheck();

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

if (!Kore) {
    var Kore = {};
}
Kore.DataProvider = Class.create();
Kore.DataProvider.prototype = {
    URL: null,
    options: null,
    content: null,
    error: null,
    transport: null,
    updateEvent: null,
    startEvent: null,
    initialize: function(_1, _2) {
        this.URL = _1 ? _1 : null;
        this.setOptions(_2);
        this.updateEvent = new YAHOO.util.CustomEvent("update", this);
        this.startEvent = new YAHOO.util.CustomEvent("start", this);
    },
    setOptions: function(_3) {
        this.options = _3 ? _3 : {};
        var _4 = this.options.onComplete ||
        function() {};
        var _5 = this;
        this.options.onComplete = function(t, _7) {
            _5.transport = t.transport;
            if (t.error) {
                _5.error = t.error;
            } else {
                _5.content = t.transport.responseText;
            }
            _5.onComplete();
            _5.updateEvent.fire(_5);
        };
    },
    getContent: function() {
        this.startEvent.fire(this);
        this.content = null;
        this.error = null;
        if (this.URL == null) {
            this.error = new Kore.Error(Kore.Error.ERR_NO_URL, "The data provider must point to a URL location.");
            this.updateEvent.fire(this);
            return;
        }
        new Kore.Transporter(this.URL, this.options);
    },
    onComplete: function() {}
};

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

if (!Kore) {
    var Kore = {};
}
Kore.Error = Class.create();
Object.extend(Kore.Error, {
    ERR_TO: 1,
    ERR_404: 4,
    ERR_NOT_JSON: 5,
    ERR_NOT_HTML: 6,
    ERR_NOT_XML: 7,
    ERR_NO_URL: 10,
    ERR_JSERROR: 100,
    ERR_SETDOM: 150,
    ERR_REQUEST_URI_TOO_LONG: 414
});
Kore.Error.prototype = {
    code: "",
    message: "",
    initialize: function(_1, _2) {
        this.code = _1;
        this.message = _2;
    },
    show: function(_3) {
        if (typeof _3 == "undefined") {
            return;
        }
        var _4 = _3.split(/%s/);
        var _5 = "";
        if (_4.length == 1) {
            _5 = _3;
        } else {
            if (_4.length == 2) {
                _5 = _4[0] + this.code + _4[1];
            } else {
                _5 = _4[0] + this.code + _4[1] + this.message + _4[2];
            }
        }
        Kore.Log.info(_5);
    }
};

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

if (!Kore) {
    var Kore = {};
}
Kore.HtmlProcessor = Class.create();
Kore.HtmlProcessor.prototype = {
    container: null,
    source: null,
    hideContainerIfEmpty: false,
    fireLegacyOnLoad: true,
    error: null,
    scripts: [],
    styles: [],
    writeString: null,
    initialize: function(_1, _2) {
        this.hideContainerIfEmpty = false;
        this.fireLegacyOnLoad = true;
        this.container = _1;
        if (typeof _1.loadEvent == "undefined") {
            this.container.loadEvent = new YAHOO.util.CustomEvent("load", this.container);
            this.container.unloadEvent = new YAHOO.util.CustomEvent("unload", this.container);
        }
        this.source = _2;
        this.js_loader = new Kore.JSLoader(false);
        this.css_loader = new Kore.CSSLoader(false);
        this.scripts = [];
        this.styles = [];
        this.finalizeEvent = new YAHOO.util.CustomEvent("finalize", this);
        this.beforeLoadEvent = new YAHOO.util.CustomEvent("beforeLoad", this);
        this.writeString = "";
    },
    getAllScripts: function() {
        var _3 = /(<script[^>]*>((?:.|\r|\n|\r\n)*?)<\/script>)/gi;
        while ((arr_to_load = _3.exec(this.source)) != null) {
            var _4 = arr_to_load[1];
            var _5 = _4.match(/src="([^"]*)"/);
            if (_5) {
                var _6 = _5[1];
                var _7 = window.location.toString().replace(/\/[^\/]*$/gi, "/");
                _6 = _7 + _6;
                this.scripts.push({
                    "type": "src",
                    "src": _6,
                    "content": null,
                    "position": arr_to_load.index
                });
            } else {
                var _8 = _4.replace(/<script[^>]*>/i, "");
                _8 = _8.replace(/<\/script>/i, "");
                if (_8.trim() != "") {
                    this.scripts.push({
                        "type": "inline",
                        "src": null,
                        "content": _8,
                        "position": arr_to_load.index
                    });
                }
            }
        }
        var _9 = this.source;
        var _a = 0;
        for (var i = 0; i < this.scripts.length; i++) {
            var _c = this.scripts[i].position + _a;
            var _d = "<span koreid=\"k" + i + "\"></span>";
            _9 = _9.substr(0, _c) + _d + _9.substr(_c);
            _a += _d.length;
        }
        this.source = _9;
    },
    getAllStyleSources: function() {
        if (Kore.is.ie || Kore.is.safari) {
            var _e = window.location.toString().replace(/\/[^\/]*$/gi, "/");
            var _f = null;
            var _10 = this.source.match(/<link[^>]*>|<style[^>]*>((?:.|\r|\n|\r\n)*?)<\/style>/gi);
            if (_10 != null && _10.length) {
                for (var i = 0; i < _10.length; i++) {
                    _f = _10[i].match(/href="([^\"]*)"/i);
                    if (_f && _f[1]) {
                        this.styles.push({
                            "type": "src",
                            "src": _e + _f[1],
                            "content": null
                        });
                    } else {
                        var _12 = _10[i];
                        _12 = _12.replace(/<style[^>]*>/i, "");
                        _12 = _12.replace(/<\/style>/i, "");
                        this.styles.push({
                            "type": "inline",
                            "src": null,
                            "content": _12
                        });
                    }
                }
            }
        }
    },
    retrieveAllScriptSources: function() {
        for (var i = 0; i < this.scripts.length; i++) {
            var o = this.scripts[i];
            if (o.type == "src") {
                this.js_loader.addFile(o.src);
            }
        }
        this.js_loader.loadFiles(function() {
            this.loadAllScriptsInContainer();
        }.bind(this), false);
    },
    retrieveAllStyleSources: function() {
        for (var i = 0; i < this.styles.length; i++) {
            if (this.styles[i].type == "src") {
                this.css_loader.addFile(this.styles[i].src);
            }
        }
        this.css_loader.loadFiles(function() {
            this.loadAllStylesInContainer();
            this.retrieveAllScriptSources();
        }.bind(this));
    },
    toExecute: function(_16) {
        return Kore.Cache.getState(_16) != Kore.Cache.States.executed;
    },
    loadAllStylesInContainer: function() {
        this.css_loader.doEvaluation = true;
        for (var i = 0; i < this.styles.length; i++) {
            var o = this.styles[i];
            if (o.type == "src") {
                this.css_loader.interpretFile(o.src);
            } else {
                this.css_loader.interpretSource(o.content);
            }
        }
        this.css_loader.doEvaluation = false;
    },
    loadAllScriptsInContainer: function() {
        Kore.container = this.container;
        var _19 = document.write;
        document.write = function(str) {
            this.writeString += str;
        }.bind(this);
        for (var i = 0; i < this.scripts.length; i++) {
            this.writeString = "";
            var o = this.scripts[i];
            if (o.type == "src") {
                if (this.toExecute(o.src)) {
                    this.js_loader.interpretSource(Kore.Cache.getValue(o.src));
                    Kore.Cache.setState(o.src, Kore.Cache.States.executed);
                }
            } else {
                this.js_loader.interpretSource(o.content);
            }
            if (this.writeString.trim().length == 0) {
                continue;
            }
            var arr = this.container.domElement.getElementsByTagName("span");
            for (var j = 0; j < arr.length; j++) {
                var el = arr[j];
                if (el.getAttribute("koreid") == "k" + i) {
                    el.innerHTML = this.writeString;
                    break;
                }
            }
        }
        document.write = _19;
        this.legacyOnLoad();
        this.container.loadEvent.fire();
        this.finalizeEvent.fire(this.container);
    },
    loadResources: function() {
        this.retrieveAllStyleSources();
    },
    process: function() {
        this.container.unloadEvent.fire();
        this.container.unloadEvent.unsubscribeAll();
        this.beforeLoadEvent.fire();
        this.getAllScripts();
        try {
            this.container.domElement.innerHTML = this.source;
        } catch (e) {
            this.error = new Kore.Error(Kore.Error.ERR_SETDOM, "Could not set the source on the specified element");
        }
        if (!this.error) {
            this.getAllStyleSources();
            this.loadResources();
        } else {
            this.error.show();
            this.finalizeEvent.fire(this.container);
        }
    },
    addFinalizeListener: function(fn, _21) {
        this.finalizeEvent.subscribe(fn, _21, true);
    },
    legacyOnLoad: function() {
        if (!this.fireLegacyOnLoad) {
            return;
        }
        try {
            var _22 = "load";
            if (typeof window.__eventHandlers != "undefined" && typeof window.__eventHandlers[_22] != "undefined") {
                for (var i = 0; i < window.__eventHandlers[_22].length; i++) {
                    var f = window.__eventHandlers[_22][i];
                    f();
                }
            }
        } catch (e) {
            alert(e.message);
        }
    }
};

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

if (!Kore) {
    var Kore = {};
}
Kore.HtmlProvider = Class.create();
Kore.HtmlProvider.prototype = Object.extend(new Kore.DataProvider(), {
    container: null,
    processor: null,
    beforeLoadEvent: null,
    finalizeEvent: null,
    scriptSources: new Array(),
    styleSources: new Array(),
    initialize: function(_1, _2, _3) {
        this.URL = _1 ? _1 : null;
        this.container = _2;
        this.setOptions(_3);
        this.updateEvent = new YAHOO.util.CustomEvent("update", this);
        this.startEvent = new YAHOO.util.CustomEvent("start", this);
        this.finalizeEvent = new YAHOO.util.CustomEvent("finalize", this);
    },
    onComplete: function() {
        this.processor = new Kore.HtmlProcessor(this.container, this.content);
        this.processor.addFinalizeListener(this.onFinalize, this);
        this.processor.process();
    },
    onFinalize: function() {
        this.finalizeEvent.fire();
    }
});

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

if (!Kore) {
    var Kore = {};
}
Kore.LoadingIndicator = Class.create();
Kore.LoadingIndicator.prototype = {
    element: null,
    initialize: function() {
        this.element = YAHOO.util.Dom.get("kore_li");
    },
    start: function() {
        if (this.element == null) {
            return;
        }
        YAHOO.util.Dom.addClass(document.body, "kore_li_start");
        try {
            var _1 = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0;
            YAHOO.util.Dom.setStyle(this.element, "top", _1 + "px");
        } catch (e) {}
        YAHOO.util.Dom.setStyle(this.element, "display", "");
    },
    stop: function() {
        if (this.element == null) {
            return;
        }
        YAHOO.util.Dom.removeClass(document.body, "kore_li_start");
        try {
            YAHOO.util.Dom.setStyle(this.element, "display", "none");
        } catch (e) {}
    }
};
Kore.LoadingIndicator.instance = null;
Kore.LoadingIndicator.create = function() {
    if (Kore.LoadingIndicator.instance == null) {
        Kore.LoadingIndicator.instance = new Kore.LoadingIndicator();
    }
    return Kore.LoadingIndicator.instance;
};

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

if (!Kore) {
    var Kore = {};
}
Kore.Transporter = Class.create();
Kore.Transporter.prototype = {
    error: null,
    transport: null,
    initialize: function(_1, _2) {
        this.setOptions(_2);
        var _3 = _2.onComplete;
        var _4 = this;
        if (_1.length > 2047) {
            this.error = new Kore.Error(Kore.Error.ERR_REQUEST_URI_TOO_LONG, "Request-URI Too Long");
            this.transport = null;
            _3(_4, null);
            return;
        }
        var _s = function(_6) {
                var _7 = false;
                if (!_4.error) {
                    _4.transport = _6;
                    _7 = _6.getResponseHeader["Kt_location"];
                    if (_7) {
                        _7 = _4._sanitizeRedirectURL(_7);
                        _4.options.method = "GET";
                        _4._makeRequest(_7, {
                            success: _s,
                            failure: _f
                        });
                    }
                }
                if (!_7) {
                    _3(_4, null);
                }
            };
        var _f = function(_9) {
                _4.error = new Kore.Error(_9.status, _9.statusText);
                _4.transport = _9;
                _3(_4, null);
                return;
            };
        this._makeRequest(_1, {
            success: _s,
            failure: _f
        });
    },
    _sanitizeRedirectURL: function(_a) {
        var _b = _a.replace(/[#\s\r\n]*$/gi, "");
        if (_b.indexOf("KT_ajax_request=true") >= 0) {
            _b = _b.replace(/&KT_ajax_request=true/, "");
            _b = _b.replace(/\?KT_ajax_request=true$/, "");
            _b = _b.replace(/\?KT_ajax_request=true&/, "?");
        }
        var _c = _b.match(/([^\?#]*)/i);
        _c = _c[1];
        var _d = _b.match(/\#([^\#]*)/i);
        if (_d) {
            _d = _d[1].toQueryParams();
        }
        if (_b.indexOf("__state=") > 0 && _d) {
            _b = _c + "?" + $H(_d).toQueryString();
        }
        if (typeof dhtmlHistory != "undefined") {
            dhtmlHistory.toAdd = _b;
        }
        if (_b.indexOf("KT_ajax_request=true") < 0) {
            _b = _b + (_b.indexOf("?") >= 0 ? "&KT_ajax_request=true" : "?KT_ajax_request=true");
        }
        return _b;
    },
    _makeRequest: function(_e, _f) {
        try {
            var _10 = Kore.getDocumentCharset();
            if (_10) {
                YAHOO.util.Connect.initHeader("Kt_charset", _10);
            }
        } catch (err) {}
        YAHOO.util.Connect.asyncRequest(this.options.method, _e, _f, this.options.postData);
    },
    setOptions: function(_11) {
        this.options = {
            onComplete: function() {},
            method: "GET",
            asynchronous: true,
            parameters: "",
            postData: null
        };
        Object.extend(this.options, _11 || {});
    }
};

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

if (typeof MxAjaxToolbox == "undefined") {
    MxAjaxToolbox = {};
}
MxAjaxToolbox.MultiHtmlProvider = Class.create();
MxAjaxToolbox.MultiHtmlProvider.prototype = Object.extend(new Kore.DataProvider(), {
    processors: null,
    descriptor: null,
    html_content: null,
    contents: null,
    beforeLoadEvent: null,
    initialize: function(_1, _2) {
        this.URL = _1 ? _1 : null;
        this.contents = {};
        this.processors = {};
        this.setOptions(_2);
        this.updateEvent = new YAHOO.util.CustomEvent("update", this);
        this.finalizeEvent = new YAHOO.util.CustomEvent("finalize", this);
        this.startEvent = new YAHOO.util.CustomEvent("start", this);
        this.beforeLoadEvent = new YAHOO.util.CustomEvent("beforeLoad", this);
    },
    parseRawResponse: function() {
        this.descriptor = null;
        this.html_content = null;
        try {
            var _3 = this.transport.getResponseHeader["Kt_json"];
            if (typeof(_3) == "undefined") {
                this.error = new Kore.Error(Kore.Error.ERR_NOT_JSON, "Error processing server response:" + "\r\n================================\r\n" + this.transport.responseText + "\r\n================================");
                return;
            }
            this.descriptor = eval("(" + _3 + ")");
        } catch (e) {
            this.error = new Kore.Error(Kore.Error.ERR_NOT_JSON, e.message);
            return;
        }
        if (!this.content) {
            this.error = new Kore.Error(Kore.Error.ERR_NOT_HTML, "The HTML content is missing.");
            return;
        }
        this.html_content = this.content;
        try {
            if (typeof document.selection != "undefined") {
                document.selection.empty();
            } else {
                window.getSelection().collapseToStart();
            }
        } catch (e) {}
        for (fragment_id in this.descriptor.panels) {
            if (typeof this.descriptor.panels[fragment_id].end != "undefined") {
                this.contents[fragment_id] = this.html_content.substring(this.descriptor.panels[fragment_id].start, this.descriptor.panels[fragment_id].end);
            } else {
                this.contents[fragment_id] = this.html_content.substr(this.descriptor.panels[fragment_id].start);
            }
            var s = this.contents[fragment_id];
            var _5 = "<div class=\"panel__content\">";
            var _6 = "</div>";
            if (s.indexOf(_5) >= 0) {
                s = s.replace(new RegExp(_5, "i"), "");
                var _7 = s.lastIndexOf(_6);
                if (_7 >= 0) {
                    var _8 = s.substr(0, _7);
                    if (_8.trim().length != 0) {
                        s = _8 + s.substr(_7 + 6, s.length);
                    } else {
                        s = "";
                    }
                }
            } else {}
            this.contents[fragment_id] = s;
        }
    },
    initializeProcessors: function() {
        this.num_processors_loaded = 0;
        this.num_processors_ready = 0;
        this.num_processors = 0;
        for (var _9 in $ctrl.panels) {
            if (typeof this.descriptor.panels[_9] != "undefined") {
                if (this._isEmptyContent(this.contents[_9])) {
                    YAHOO.util.Dom.setStyle($ctrl.getPanel(_9).getHTMLElement(), "display", "none");
                } else {
                    YAHOO.util.Dom.setStyle($ctrl.getPanel(_9).getHTMLElement(), "display", "");
                }
                this.num_processors++;
                this.processors[_9] = new Kore.HtmlProcessor($ctrl.panels[_9], this.contents[_9], _9);
                this.processors[_9].fireLegacyOnLoad = false;
                this.processors[_9].container.loadEvent.subscribe(this.legacyOnLoad, this, true);
                var p = $ctrl.panels[_9];
                this.processors[_9].beforeLoadEvent.subscribe(p.handleStartEffect, p, true);
            }
        }
    },
    _isEmptyContent: function(_b) {
        return _b == "";
    },
    processorReady: function(_c, _d) {
        _d = _d[0];
        this.num_processors_ready++;
        _d.handleEndEffect();
        if (this.num_processors_ready == this.num_processors) {
            this.finalizeEvent.fire();
        }
    },
    onComplete: function() {
        this.parseRawResponse();
        if (this.error) {
            this.error.show();
            this.finalizeEvent.fire();
            return;
        }
        this.initializeProcessors();
        this.finalizeEvent.subscribe(function() {
            if (this.descriptor != null && this.descriptor.title) {
                document.title = this.descriptor.title;
            }
        }, this, true);
        for (var _e in this.processors) {
            var _f = $ctrl.panels[_e];
            _f.setCurrentState(this.descriptor.panels[_f.name].current_state);
            this.processors[_e].addFinalizeListener(this.processorReady, this, true);
            this.processors[_e].process();
        }
    },
    legacyOnLoad: function() {
        this.num_processors_loaded++;
        if (this.num_processors_loaded != this.num_processors) {
            return;
        }
        try {
            var _10 = "load";
            if (typeof window.__eventHandlers != "undefined" && typeof window.__eventHandlers[_10] != "undefined") {
                for (var i = 0; i < window.__eventHandlers[_10].length; i++) {
                    var f = window.__eventHandlers[_10][i];
                    f();
                }
            }
        } catch (e) {
            alert(e.message);
        }
    }
});

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

if (typeof Widgets == "undefined") {
    Widgets = {};
}
Widgets.general_actions = {
    addActions: function(o) {
        o.processURL = Widgets.general_actions.processURL;
        o.checkTarget = Widgets.general_actions.checkTarget;
        o.initForms = Widgets.general_actions.initForms;
        o.initLinks = Widgets.general_actions.initLinks;
    },
    initLinks: function() {
        var _2 = $A(this.domElement.getElementsByTagName("a"));
        _2.each(function(_3) {
            if (_3.getAttribute("ajaxified") == null) {
                _3.setAttribute("ajaxified", "true");
                if (this.checkTarget(_3.href, this.fullUrl)) {
                    _3.href = this.processURL(_3.href);
                    new AjaxLink(_3, this);
                }
            }
        }.bind(this));
    },
    initForms: function() {
        var _4 = $A(this.domElement.getElementsByTagName("form"));
        _4.each(function(_5) {
            if (_5.getAttribute("ajaxified") == null) {
                _5.setAttribute("ajaxified", "true");
                if (this.checkTarget(_5.action, this.fullUrl)) {
                    if (_5.enctype.toLowerCase() != "multipart/form-data") {
                        if (_5.method.toLowerCase() != "get") {
                            _5.action = this.processURL(_5.action);
                        }
                        new AjaxForm(_5, this);
                    } else {
                        _5.action = this.processURL(_5.action);
                    }
                }
            }
        }.bind(this));
    },
    checkTarget: function(_6, _7) {
        var _8 = decodeURI(_6);
        var _9 = decodeURI(_7.replace(/\?.*$/, ""));
        if (_8.indexOf("#") != -1) {
            return false;
        }
        if (_8.indexOf("/") == -1) {
            _8 = _9.replace(/\/[^\/]*$/, "/" + _8);
        } else {
            if (_8.indexOf("/") == 0) {
                _8 = _9.replace(/^([^\/]+\/\/[^\/]+)\/.*$/, "$1" + _8);
            }
        }
        return (_8.indexOf(_9) == 0);
    },
    processURL: function(_a) {
        if (_a.indexOf("KT_ajax_request=true") >= 0) {
            _a = _a.replace(/&KT_ajax_request=true/, "");
            _a = _a.replace(/\?KT_ajax_request=true$/, "");
            _a = _a.replace(/\?KT_ajax_request=true&/, "?");
        }
        return _a;
    }
};

function AjaxForm(_b, _c) {
    this.form = _b;
    this.form.dialog = _c;
    if (typeof GLOBAL_registerFormSubmitEventHandler != "undefined") {
        GLOBAL_registerFormSubmitEventHandler("AjaxForm_handleFormSubmit", 50, this.form);
    } else {
        YAHOO.util.Event.addListener(this.form, "submit", AjaxForm_handleFormSubmit, this, true);
    }
}

function AjaxForm_handleFormSubmit(e) {
    var _e;
    if (typeof fire_starter == "undefined" || (typeof fire_starter != "undefined" && !fire_starter)) {
        _e = YAHOO.util.Event.getTarget(e);
    } else {
        _e = fire_starter;
    }
    if (_e.form) {
        _e = _e.form;
    }
    var _f = _e.action;
    if (_e.method == "get") {
        var _f = $app_path + "?" + Form.serialize(_e);
        _e.dialog.setUrl(_f);
        _e.dialog.loadInfo();
    } else {
        var _f = _e.action;
        _e.dialog.setUrl(_f);
        _e.dialog.loadInfo({
            method: "post",
            postData: Form.serialize(_e)
        });
    }
    YAHOO.util.Event.stopEvent(e);
    return false;
}

function AjaxLink(_10, _11) {
    this.link = _10;
    this.link.dialog = _11;
    YAHOO.util.Event.addListener(YAHOO.util.Dom.get(this.link), "click", function(e) {
        var url = YAHOO.util.Dom.get(this.link).href;
        this.link.dialog.setUrl(url);
        this.link.dialog.loadInfo();
        YAHOO.util.Event.stopEvent(e);
        return false;
    }, this, true);
}

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

window.dhtmlHistory = {
    initialize: function() {
        if (this.isInternetExplorer() == false) {
            return;
        }
        if (historyStorage.hasKey("DhtmlHistory_pageLoaded") == false) {
            this.fireOnNewListener = false;
            this.firstLoad = true;
            historyStorage.put("DhtmlHistory_pageLoaded", true);
        } else {
            this.fireOnNewListener = true;
            this.firstLoad = false;
        }
    },
    addListener: function(_1) {
        this.listener = _1;
        if (this.fireOnNewListener == true) {
            this.fireHistoryEvent(this.currentLocation);
            this.fireOnNewListener = false;
        }
    },
    add: function(_2, _3) {
        var _4 = this;
        var _5 = function() {
                if (_4.currentWaitTime > 0) {
                    _4.currentWaitTime = _4.currentWaitTime - _4.WAIT_TIME;
                }
                _2 = _4.removeHash(_2);
                if (_2) {
                    var _6 = document.getElementById(_2);
                    if (_6 != undefined || _6 != null) {
                        var _7 = "Exception: History locations can not have " + "the same value as _any_ id's " + "that might be in the document, " + "due to a bug in Internet " + "Explorer; please ask the " + "developer to choose a history " + "location that does not match " + "any HTML id's in this " + "document. The following ID " + "is already taken and can not " + "be a location: " + _2;
                        throw _7;
                    }
                }
                historyStorage.put(_2, _3);
                _4.ignoreLocationChange = true;
                this.ieAtomicLocationChange = true;
                _4.currentLocation = _2;
                if (_2 == "" && Kore.is.mozilla) {
                    window.location.href = window.location.href.replace(/#?.*$/, "#");
                } else {
                    window.location.hash = _2;
                }
                if (_4.isInternetExplorer()) {
                    _4.iframe.src = _4.pathToBlank + "?" + _2;
                }
                this.ieAtomicLocationChange = false;
            };
        window.setTimeout(_5, this.currentWaitTime);
        this.currentWaitTime = this.currentWaitTime + this.WAIT_TIME;
    },
    isFirstLoad: function() {
        if (this.firstLoad == true) {
            return true;
        } else {
            return false;
        }
    },
    isInternational: function() {
        return false;
    },
    getVersion: function() {
        return "0.05";
    },
    getCurrentLocation: function() {
        var _8 = this.removeHash(window.location.hash);
        return _8;
    },
    currentLocation: null,
    listener: null,
    iframe: null,
    ignoreLocationChange: null,
    WAIT_TIME: 200,
    currentWaitTime: 0,
    fireOnNewListener: null,
    firstLoad: null,
    ieAtomicLocationChange: null,
    create: function(_9) {
        this.pathToBlank = _9 || "blank.html";
        var _a = this.getCurrentLocation();
        this.currentLocation = _a;
        if (this.isInternetExplorer()) {
            var _b = "<iframe style=\"border: 0px; width: 0px; " + "height: 0px; position: absolute; bottom: 0px; " + "right: 0px; visibility: visible;\" " + "name=\"DhtmlHistoryFrame\" id=\"DhtmlHistoryFrame\" " + "src=\"" + this.pathToBlank + "?" + _a + "\">" + "</iframe>";
            if (document.body) {
                var _c = document.createElement("span");
                _c.innerHTML = _b;
                document.body.insertBefore(_c.firstChild, document.body.firstChild);
            } else {
                document.write(_b);
            }
            this.iframe = document.getElementById("DhtmlHistoryFrame");
            this.WAIT_TIME = 400;
        }
        var _d = this;
        window.onunload = function() {
            _d.firstLoad = null;
        };
        if (this.isInternetExplorer() == false) {
            if (historyStorage.hasKey("DhtmlHistory_pageLoaded") == false) {
                this.ignoreLocationChange = true;
                this.firstLoad = true;
                historyStorage.put("DhtmlHistory_pageLoaded", true);
            } else {
                this.ignoreLocationChange = false;
                this.fireOnNewListener = true;
            }
        } else {
            this.ignoreLocationChange = true;
        }
        var _d = this;
        var _e = function() {
                _d.checkLocation();
            };
        setInterval(_e, 100);
    },
    fireHistoryEvent: function(_f) {
        var _10 = historyStorage.get(_f);
        if (_10) {
            try {
                eval(_10[0] + "(\"" + _f + "\", \"" + _10[1] + "\")");
            } catch (e) {
                alert("Error executing '" + _10[0] + "(\"" + _f + "\", \"" + _10[1] + "\")" + "': \n" + e.message);
            }
        }
        if (this.listener) {
            this.listener.call(null, _f, _10);
        }
    },
    checkLocation: function() {
        if (this.isInternetExplorer() == false && this.ignoreLocationChange == true) {
            this.ignoreLocationChange = false;
            return;
        }
        if (this.isInternetExplorer() == false && this.ieAtomicLocationChange == true) {
            return;
        }
        var _11 = this.getCurrentLocation();
        if (_11 == this.currentLocation) {
            return;
        }
        this.ieAtomicLocationChange = true;
        if (this.isInternetExplorer() && this.getIFrameHash() != _11) {
            this.iframe.src = this.pathToBlank + "?" + _11;
        } else {
            if (this.isInternetExplorer()) {
                return;
            }
        }
        this.currentLocation = _11;
        this.ieAtomicLocationChange = false;
        this.fireHistoryEvent(_11);
    },
    getIFrameHash: function() {
        var _12 = document.getElementById("DhtmlHistoryFrame");
        var doc = _12.contentWindow.document;
        var _14 = new String(doc.location.search);
        if (_14.length == 1 && _14.charAt(0) == "?") {
            _14 = "";
        } else {
            if (_14.length >= 2 && _14.charAt(0) == "?") {
                _14 = _14.substring(1);
            }
        }
        return _14;
    },
    removeHash: function(_15) {
        if (_15 == null || _15 == undefined) {
            return null;
        } else {
            if (_15 == "") {
                return "";
            } else {
                if (_15.length == 1 && _15.charAt(0) == "#") {
                    return "";
                } else {
                    if (_15.length > 1 && _15.charAt(0) == "#") {
                        return _15.substring(1);
                    } else {
                        return _15;
                    }
                }
            }
        }
    },
    iframeLoaded: function(_16) {
        if (this.ignoreLocationChange == true) {
            this.ignoreLocationChange = false;
            return;
        }
        var _17 = new String(_16.search);
        if (_17.length == 1 && _17.charAt(0) == "?") {
            _17 = "";
        } else {
            if (_17.length >= 2 && _17.charAt(0) == "?") {
                _17 = _17.substring(1);
            }
        }
        if (this.pageLoadEvent != true) {
            window.location.hash = _17;
        }
        this.fireHistoryEvent(_17);
    },
    isInternetExplorer: function() {
        var _18 = navigator.userAgent.toLowerCase();
        if (document.all && _18.indexOf("msie") != -1 && _18.indexOf("opera") == -1) {
            return true;
        } else {
            return false;
        }
    }
};
window.historyStorage = {
    debugging: false,
    storageHash: new Object(),
    hashLoaded: false,
    put: function(key, _1a) {
        if (!/^ktnotempty_/.test(key)) {
            key = "ktnotempty_" + key;
        }
        this.assertValidKey(key);
        if (this.hasKey(key)) {
            this.remove(key);
        }
        this.storageHash[key] = _1a;
        this.saveHashTable();
    },
    get: function(key) {
        if (!/^ktnotempty_/.test(key)) {
            key = "ktnotempty_" + key;
        }
        this.assertValidKey(key);
        this.loadHashTable();
        var _1c = this.storageHash[key];
        if (_1c == undefined) {
            return null;
        } else {
            return _1c;
        }
    },
    remove: function(key) {
        if (!/^ktnotempty_/.test(key)) {
            key = "ktnotempty_" + key;
        }
        this.assertValidKey(key);
        this.loadHashTable();
        delete this.storageHash[key];
        this.saveHashTable();
    },
    reset: function() {
        if (this.storageField) {
            this.storageField.value = "";
        }
        this.storageHash = new Object();
    },
    hasKey: function(key) {
        if (!/^ktnotempty_/.test(key)) {
            key = "ktnotempty_" + key;
        }
        this.assertValidKey(key);
        this.loadHashTable();
        if (typeof this.storageHash[key] == "undefined") {
            return false;
        } else {
            return true;
        }
    },
    isValidKey: function(key) {
        return (typeof key == "string");
    },
    storageField: null,
    init: function() {
        var _20 = "<form id=\"historyStorageForm\" method=\"get\" style=\"position: absolute; top: -1000px; left: -1000px; display: none;\"><TEXTAREA id=\"historyStorageField\" name=\"historyStorageField\"></textarea></form>";
        if (document.body) {
            var _21 = document.createElement("span");
            _21.innerHTML = _20;
            document.body.insertBefore(_21.firstChild, document.body.firstChild);
        } else {
            document.write(_20);
        }
        this.storageField = document.getElementById("historyStorageField");
    },
    assertValidKey: function(key) {
        if (this.isValidKey(key) == false) {
            throw "Please provide a valid key for " + "window.historyStorage, key= " + key;
        }
    },
    loadHashTable: function() {
        if (this.hashLoaded == false) {
            var _23 = this.storageField ? this.storageField.value : "";
            if (_23 != "" && _23 != null) {
                this.storageHash = eval("(" + _23 + ")");
            }
            this.hashLoaded = true;
        }
    },
    saveHashTable: function() {
        this.loadHashTable();
        var _24 = JSON.stringify(this.storageHash);
        if (this.storageField) {
            this.storageField.value = _24;
        }
    }
};

#12 JavaScript::Eval (size: 8046, repeated: 1)

/*
Copyright (c) 2006, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 0.11.1
*/
YAHOO.util.Connect = {
    _msxml_progid: ['MSXML2.XMLHTTP.3.0', 'MSXML2.XMLHTTP', 'Microsoft.XMLHTTP'],
    _http_header: {},
    _has_http_headers: false,
    _default_post_header: true,
    _isFormSubmit: false,
    _isFileUpload: false,
    _formNode: null,
    _sFormData: null,
    _poll: [],
    _timeOut: [],
    _polling_interval: 50,
    _transaction_id: 0,
    setProgId: function(id) {
        this._msxml_progid.unshift(id);
    },
    setDefaultPostHeader: function(b) {
        this._default_post_header = b;
    },
    setPollingInterval: function(i) {
        if (typeof i == 'number' && isFinite(i)) {
            this._polling_interval = i;
        }
    },
    createXhrObject: function(transactionId) {
        var obj, http;
        try {
            http = new XMLHttpRequest();
            obj = {
                conn: http,
                tId: transactionId
            };
        } catch (e) {
            for (var i = 0; i < this._msxml_progid.length; ++i) {
                try {
                    http = new ActiveXObject(this._msxml_progid[i]);
                    obj = {
                        conn: http,
                        tId: transactionId
                    };
                    break;
                } catch (e) {}
            }
        } finally {
            return obj;
        }
    },
    getConnectionObject: function() {
        var o;
        var tId = this._transaction_id;
        try {
            o = this.createXhrObject(tId);
            if (o) {
                this._transaction_id++;
            }
        } catch (e) {} finally {
            return o;
        }
    },
    asyncRequest: function(method, uri, callback, postData) {
        var o = this.getConnectionObject();
        if (!o) {
            return null;
        } else {
            if (this._isFormSubmit) {
                if (this._isFileUpload) {
                    this.uploadFile(o.tId, callback, uri);
                    this.releaseObject(o);
                    return;
                }
                if (method == 'GET') {
                    uri += "?" + this._sFormData;
                } else if (method == 'POST') {
                    postData = this._sFormData;
                }
                this._sFormData = '';
            }
            o.conn.open(method, uri, true);
            if (this._isFormSubmit || (postData && this._default_post_header)) {
                this.initHeader('Content-Type', 'application/x-www-form-urlencoded');
                if (this._isFormSubmit) {
                    this._isFormSubmit = false;
                }
            }
            if (this._has_http_headers) {
                this.setHeader(o);
            }
            this.handleReadyState(o, callback);
            postData ? o.conn.send(postData) : o.conn.send(null);
            return o;
        }
    },
    handleReadyState: function(o, callback) {
        var timeOut = callback.timeout;
        var oConn = this;
        try {
            if (timeOut !== undefined) {
                this._timeOut[o.tId] = window.setTimeout(function() {
                    oConn.abort(o, callback, true)
                }, timeOut);
            }
            this._poll[o.tId] = window.setInterval(function() {
                if (o.conn && o.conn.readyState == 4) {
                    window.clearInterval(oConn._poll[o.tId]);
                    oConn._poll.splice(o.tId);
                    if (timeOut) {
                        oConn._timeOut.splice(o.tId);
                    }
                    oConn.handleTransactionResponse(o, callback);
                }
            }, this._polling_interval);
        } catch (e) {
            window.clearInterval(oConn._poll[o.tId]);
            oConn._poll.splice(o.tId);
            if (timeOut) {
                oConn._timeOut.splice(o.tId);
            }
            oConn.handleTransactionResponse(o, callback);
        }
    },
    handleTransactionResponse: function(o, callback, isAbort) {
        if (!callback) {
            this.releaseObject(o);
            return;
        }
        var httpStatus, responseObject;
        try {
            if (o.conn.status !== undefined && o.conn.status != 0) {
                httpStatus = o.conn.status;
            } else {
                httpStatus = 13030;
            }
        } catch (e) {
            httpStatus = 13030;
        }
        if (httpStatus >= 200 && httpStatus < 300) {
            responseObject = this.createResponseObject(o, callback.argument);
            if (callback.success) {
                if (!callback.scope) {
                    callback.success(responseObject);
                } else {
                    callback.success.apply(callback.scope, [responseObject]);
                }
            }
        } else {
            switch (httpStatus) {
            case 12002:
            case 12029:
            case 12030:
            case 12031:
            case 12152:
            case 13030:
                responseObject = this.createExceptionObject(o.tId, callback.argument, isAbort);
                if (callback.failure) {
                    if (!callback.scope) {
                        callback.failure(responseObject);
                    } else {
                        callback.failure.apply(callback.scope, [responseObject]);
                    }
                }
                break;
            default:
                responseObject = this.createResponseObject(o, callback.argument);
                if (callback.failure) {
                    if (!callback.scope) {
                        callback.failure(responseObject);
                    } else {
                        callback.failure.apply(callback.scope, [responseObject]);
                    }
                }
            }
        }
        this.releaseObject(o);
    },
    createResponseObject: function(o, callbackArg) {
        var obj = {};
        var headerObj = {};
        try {
            var headerStr = o.conn.getAllResponseHeaders();
            var header = headerStr.split('\n');
            for (var i = 0; i < header.length; i++) {
                var delimitPos = header[i].indexOf(':');
                if (delimitPos != -1) {
                    headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
                }
            }
        } catch (e) {}
        obj.tId = o.tId;
        obj.status = o.conn.status;
        obj.statusText = o.conn.statusText;
        obj.getResponseHeader = headerObj;
        obj.getAllResponseHeaders = headerStr;
        obj.responseText = o.conn.responseText;
        obj.responseXML = o.conn.responseXML;
        if (typeof callbackArg !== undefined) {
            obj.argument = callbackArg;
        }
        return obj;
    },
    createExceptionObject: function(tId, callbackArg, isAbort) {
        var COMM_CODE = 0;
        var COMM_ERROR = 'communication failure';
        var ABORT_CODE = -1;
        var ABORT_ERROR = 'transaction aborted';
        var obj = {};
        obj.tId = tId;
        if (isAbort) {
            obj.status = ABORT_CODE;
            obj.statusText = ABORT_ERROR;
        } else {
            obj.status = COMM_CODE;
            obj.statusText = COMM_ERROR;
        }
        if (callbackArg) {
            obj.argument = callbackArg;
        }
        return obj;
    },
    initHeader: function(label, value) {
        if (this._http_header[label] === undefined) {
            this._http_header[label] = value;
        } else {
            this._http_header[label] = value + "," + this._http_header[label];
        }
        this._has_http_headers = true;
    },
    setHeader: function(o) {
        for (var prop in this._http_header) {
            if (this._http_header.propertyIsEnumerable) {
                o.conn.setRequestHeader(prop, this._http_header[prop]);
            }
        }
        delete this._http_header;
        this._http_header = {};
        this._has_http_headers = false;
    },
    setForm: function(formId, isUpload, secureUri) {
        this._sFormData = '';
        if (typeof formId == 'string') {
            var oForm = (document.getElementById(formId) || document.forms[formId]);
        } else if (typeof formId == 'object') {
            var oForm = formId;
        } else {
            return;
        }
        if (isUpload) {
            (typeof secureUri == 'string') ? this.createFrame(secureUri) : this.createFrame();
            this._isFormSubmit = true;
            this._isFileUpload = true;
            this._formNode = oForm;
            return;
        }
        var oElement, oName, oValue, oDisabled;
        var hasSubmit = false;
        for (var i = 0; i < oForm.elements.length; i++) {
            oDisabled = oForm.elements[i].disabled;
            oElement = oForm.elements[i];
            oName = oForm.elements[i].name;
            oValue = oForm.elements[i].value;
            if (!oDisabled && oName) {
                switch (oElement.type) {
                case 'select-one':
                case 'select-multiple':
                    for (var j = 0; j < oElement.options.length; j++) {
                        if (oElement.options[j].selected) {
                            this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oElement.options[j].value || oElement.options[j].text) + '&';
                        }
                    }
                    break;
                case 'radio':
                case 'checkbox':
                    if (oElement.checked) {
                        this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oValue) + '&';
                    }
                    break;
                case 'file':
                case undefined:
                case 'reset':
                case 'button':
                    break;
                case 'submit':
                    if (hasSubmit == false) {
                        this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oValue) + '&';
                        hasSubmit = true;
                    }
                    break;
                default:
                    this._sFormData += encodeURIComponent(oName) + '=' + encodeURIComponent(oValue) + '&';
                    break;
                }
            }
        }
        this._isFormSubmit = true;
        this._sFormData = this._sFormData.substr(0, this._sFormData.length - 1);
    },
    createFrame: function(secureUri) {
        if (window.ActiveXObject) {
            var io = document.createElement('<IFRAME name="ioFrame" id="ioFrame">');
            if (secureUri) {
                io.src = secureUri;
            }
        } else {
            var io = document.createElement('IFRAME');
            io.id = 'ioFrame';
            io.name = 'ioFrame';
        }
        io.style.position = 'absolute';
        io.style.top = '-1000px';
        io.style.left = '-1000px';
        document.body.appendChild(io);
    },
    uploadFile: function(id, callback, uri) {
        this._formNode.action = uri;
        this._formNode.enctype = 'multipart/form-data';
        this._formNode.method = 'POST';
        this._formNode.target = 'ioFrame';
        this._formNode.submit();
        this._formNode = null;
        this._isFileUpload = false;
        this._isFormSubmit = false;
        var uploadCallback = function() {
                var oResponse = {
                    tId: id,
                    responseText: document.getElementById("ioFrame").contentWindow.document.body.innerHTML,
                    argument: callback.argument
                }
                if (callback.upload) {
                    if (!callback.scope) {
                        callback.upload(oResponse);
                    } else {
                        callback.upload.apply(callback.scope, [oResponse]);
                    }
                }
                YAHOO.util.Event.removeListener("ioFrame", "load", uploadCallback);
                window.ioFrame.location.replace('#');
                setTimeout("document.body.removeChild(document.getElementById('ioFrame'))", 100);
            };
        YAHOO.util.Event.addListener("ioFrame", "load", uploadCallback);
    },
    abort: function(o, callback, isTimeout) {
        if (this.isCallInProgress(o)) {
            window.clearInterval(this._poll[o.tId]);
            this._poll.splice(o.tId);
            if (isTimeout) {
                this._timeOut.splice(o.tId);
            }
            o.conn.abort();
            this.handleTransactionResponse(o, callback, true);
            return true;
        } else {
            return false;
        }
    },
    isCallInProgress: function(o) {
        if (o.conn) {
            return o.conn.readyState != 4 && o.conn.readyState != 0;
        } else {
            return false;
        }
    },
    releaseObject: function(o) {
        o.conn = null;
        o = null;
    }
};

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

/*                                                                                                                                                      Copyright (c) 2006, Yahoo! Inc. All rights reserved.                                                                                                    Code licensed under the BSD License:                                                                                                                    http://developer.yahoo.net/yui/license.txt                                                                                                              version: 0.11.0                                                                                                                                         */
YAHOO.util.CustomEvent = function(type, oScope, silent) {
    this.type = type;
    this.scope = oScope || window;
    this.silent = silent;
    this.subscribers = [];
    if (YAHOO.util.Event) {
        YAHOO.util.Event.regCE(this);
    }
    if (!this.silent) {}
};
YAHOO.util.CustomEvent.prototype = {
    subscribe: function(fn, obj, bOverride) {
        this.subscribers.push(new YAHOO.util.Subscriber(fn, obj, bOverride));
    },
    unsubscribe: function(fn, obj) {
        var found = false;
        for (var i = 0, len = this.subscribers.length; i < len; ++i) {
            var s = this.subscribers[i];
            if (s && s.contains(fn, obj)) {
                this._delete(i);
                found = true;
            }
        }
        return found;
    },
    fire: function() {
        var len = this.subscribers.length;
        var args = [];
        for (var i = 0; i < arguments.length; ++i) {
            args.push(arguments[i]);
        }
        if (!this.silent) {}
        for (i = 0; i < len; ++i) {
            var s = this.subscribers[i];
            if (s) {
                if (!this.silent) {}
                var scope = (s.override) ? s.obj : this.scope;
                s.fn.call(scope, this.type, args, s.obj);
            }
        }
    },
    unsubscribeAll: function() {
        for (var i = 0, len = this.subscribers.length; i < len; ++i) {
            this._delete(i);
        }
    },
    _delete: function(index) {
        var s = this.subscribers[index];
        if (s) {
            delete s.fn;
            delete s.obj;
        }
        delete this.subscribers[index];
    },
    toString: function() {
        return "CustomEvent: " + "'" + this.type + "', " + "scope: " + this.scope;
    }
};
YAHOO.util.Subscriber = function(fn, obj, bOverride) {
    this.fn = fn;
    this.obj = obj || null;
    this.override = (bOverride);
};
YAHOO.util.Subscriber.prototype.contains = function(fn, obj) {
    return (this.fn == fn && this.obj == obj);
};
YAHOO.util.Subscriber.prototype.toString = function() {
    return "Subscriber { obj: " + (this.obj || "") + ", override: " + (this.override || "no") + " }";
};
if (!YAHOO.util.Event) {
    YAHOO.util.Event = function() {
        var loadComplete = false;
        var listeners = [];
        var delayedListeners = [];
        var unloadListeners = [];
        var customEvents = [];
        var legacyEvents = [];
        var legacyHandlers = [];
        var retryCount = 0;
        var onAvailStack = [];
        var legacyMap = [];
        var counter = 0;
        return {
            POLL_RETRYS: 200,
            POLL_INTERVAL: 50,
            EL: 0,
            TYPE: 1,
            FN: 2,
            WFN: 3,
            SCOPE: 3,
            ADJ_SCOPE: 4,
            isSafari: (/Safari|Konqueror|KHTML/gi).test(navigator.userAgent),
            isIE: (!this.isSafari && !navigator.userAgent.match(/opera/gi) && navigator.userAgent.match(/msie/gi)),
            addDelayedListener: function(el, sType, fn, oScope, bOverride) {
                delayedListeners[delayedListeners.length] = [el, sType, fn, oScope, bOverride];
                if (loadComplete) {
                    retryCount = this.POLL_RETRYS;
                    this.startTimeout(0);
                }
            },
            startTimeout: function(interval) {
                var i = (interval || interval === 0) ? interval : this.POLL_INTERVAL;
                var self = this;
                var callback = function() {
                        self._tryPreloadAttach();
                    };
                this.timeout = setTimeout(callback, i);
            },
            onAvailable: function(p_id, p_fn, p_obj, p_override) {
                onAvailStack.push({
                    id: p_id,
                    fn: p_fn,
                    obj: p_obj,
                    override: p_override
                });
                retryCount = this.POLL_RETRYS;
                this.startTimeout(0);
            },
            addListener: function(el, sType, fn, oScope, bOverride) {
                if (!fn || !fn.call) {
                    return false;
                }
                if (this._isValidCollection(el)) {
                    var ok = true;
                    for (var i = 0, len = el.length; i < len; ++i) {
                        ok = (this.on(el[i], sType, fn, oScope, bOverride) && ok);
                    }
                    return ok;
                } else if (typeof el == "string") {
                    var oEl = this.getEl(el);
                    if (loadComplete && oEl) {
                        el = oEl;
                    } else {
                        this.addDelayedListener(el, sType, fn, oScope, bOverride);
                        return true;
                    }
                }
                if (!el) {
                    return false;
                }
                if ("unload" == sType && oScope !== this) {
                    unloadListeners[unloadListeners.length] = [el, sType, fn, oScope, bOverride];
                    return true;
                }
                var scope = (bOverride) ? oScope : el;
                var wrappedFn = function(e) {
                        return fn.call(scope, YAHOO.util.Event.getEvent(e), oScope);
                    };
                var li = [el, sType, fn, wrappedFn, scope];
                var index = listeners.length;
                listeners[index] = li;
                if (this.useLegacyEvent(el, sType)) {
                    var legacyIndex = this.getLegacyIndex(el, sType);
                    if (legacyIndex == -1) {
                        legacyIndex = legacyEvents.length;
                        legacyMap[el.id + sType] = legacyIndex;
                        legacyEvents[legacyIndex] = [el, sType, el["on" + sType]];
                        legacyHandlers[legacyIndex] = [];
                        el["on" + sType] = function(e) {
                            YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(e), legacyIndex);
                        };
                    }
                    legacyHandlers[legacyIndex].push(index);
                } else if (el.addEventListener) {
                    el.addEventListener(sType, wrappedFn, false);
                } else if (el.attachEvent) {
                    el.attachEvent("on" + sType, wrappedFn);
                }
                return true;
            },
            fireLegacyEvent: function(e, legacyIndex) {
                var ok = true;
                var le = legacyHandlers[legacyIndex];
                for (var i = 0, len = le.length; i < len; ++i) {
                    var index = le[i];
                    if (index) {
                        var li = listeners[index];
                        if (li && li[this.WFN]) {
                            var scope = li[this.ADJ_SCOPE];
                            var ret = li[this.WFN].call(scope, e);
                            ok = (ok && ret);
                        } else {
                            delete le[i];
                        }
                    }
                }
                return ok;
            },
            getLegacyIndex: function(el, sType) {
                for (var i = 0, len = legacyEvents.length; i < len; ++i) {
                    var le = legacyEvents[i];
                    if (le && le[0] === el && le[1] === sType) {
                        return i;
                    }
                }
                return -1;
            },
            useLegacyEvent: function(el, sType) {
                if (!el.addEventListener && !el.attachEvent) {
                    return true;
                } else if (this.isSafari) {
                    if ("click" == sType || "dblclick" == sType) {
                        return true;
                    }
                }
                return false;
            },
            removeListener: function(el, sType, fn, index) {
                if (!fn || !fn.call) {
                    return false;
                }
                if (typeof el == "string") {
                    el = this.getEl(el);
                } else if (this._isValidCollection(el)) {
                    var ok = true;
                    for (var i = 0, len = el.length; i < len; ++i) {
                        ok = (this.removeListener(el[i], sType, fn) && ok);
                    }
                    return ok;
                }
                if ("unload" == sType) {
                    for (i = 0, len = unloadListeners.length; i < len; i++) {
                        var li = unloadListeners[i];
                        if (li && li[0] == el && li[1] == sType && li[2] == fn) {
                            delete unloadListeners[i];
                            return true;
                        }
                    }
                    return false;
                }
                var cacheItem = null;
                if ("undefined" == typeof index) {
                    index = this._getCacheIndex(el, sType, fn);
                }
                if (index >= 0) {
                    cacheItem = listeners[index];
                }
                if (!el || !cacheItem) {
                    return false;
                }
                if (el.removeEventListener) {
                    el.removeEventListener(sType, cacheItem[this.WFN], false);
                } else if (el.detachEvent) {
                    el.detachEvent("on" + sType, cacheItem[this.WFN]);
                }
                delete listeners[index][this.WFN];
                delete listeners[index][this.FN];
                delete listeners[index];
                return true;
            },
            getTarget: function(ev, resolveTextNode) {
                var t = ev.target || ev.srcElement;
                return this.resolveTextNode(t);
            },
            resolveTextNode: function(node) {
                if (node && node.nodeName && "#TEXT" == node.nodeName.toUpperCase()) {
                    return node.parentNode;
                } else {
                    return node;
                }
            },
            getPageX: function(ev) {
                var x = ev.pageX;
                if (!x && 0 !== x) {
                    x = ev.clientX || 0;
                    if (this.isIE) {
                        x += this._getScrollLeft();
                    }
                }
                return x;
            },
            getPageY: function(ev) {
                var y = ev.pageY;
                if (!y && 0 !== y) {
                    y = ev.clientY || 0;
                    if (this.isIE) {
                        y += this._getScrollTop();
                    }
                }
                return y;
            },
            getXY: function(ev) {
                return [this.getPageX(ev), this.getPageY(ev)];
            },
            getRelatedTarget: function(ev) {
                var t = ev.relatedTarget;
                if (!t) {
                    if (ev.type == "mouseout") {
                        t = ev.toElement;
                    } else if (ev.type == "mouseover") {
                        t = ev.fromElement;
                    }
                }
                return this.resolveTextNode(t);
            },
            getTime: function(ev) {
                if (!ev.time) {
                    var t = new Date().getTime();
                    try {
                        ev.time = t;
                    } catch (e) {
                        return t;
                    }
                }
                return ev.time;
            },
            stopEvent: function(ev) {
                this.stopPropagation(ev);
                this.preventDefault(ev);
            },
            stopPropagation: function(ev) {
                if (ev.stopPropagation) {
                    ev.stopPropagation();
                } else {
                    ev.cancelBubble = true;
                }
            },
            preventDefault: function(ev) {
                if (ev.preventDefault) {
                    ev.preventDefault();
                } else {
                    ev.returnValue = false;
                }
            },
            getEvent: function(e) {
                var ev = e || window.event;
                if (!ev) {
                    var c = this.getEvent.caller;
                    while (c) {
                        ev = c.arguments[0];
                        if (ev && Event == ev.constructor) {
                            break;
                        }
                        c = c.caller;
                    }
                }
                return ev;
            },
            getCharCode: function(ev) {
                return ev.charCode || ((ev.type == "keypress") ? ev.keyCode : 0);
            },
            _getCacheIndex: function(el, sType, fn) {
                for (var i = 0, len = listeners.length; i < len; ++i) {
                    var li = listeners[i];
                    if (li && li[this.FN] == fn && li[this.EL] == el && li[this.TYPE] == sType) {
                        return i;
                    }
                }
                return -1;
            },
            generateId: function(el) {
                var id = el.id;
                if (!id) {
                    id = "yuievtautoid-" + counter;
                    ++counter;
                    el.id = id;
                }
                return id;
            },
            _isValidCollection: function(o) {
                return (o && o.length && typeof o != "string" && !o.tagName && !o.alert && typeof o[0] != "undefined");
            },
            elCache: {},
            getEl: function(id) {
                return document.getElementById(id);
            },
            clearCache: function() {},
            regCE: function(ce) {
                customEvents.push(ce);
            },
            _load: function(e) {
                loadComplete = true;
            },
            _tryPreloadAttach: function() {
                if (this.locked) {
                    return false;
                }
                this.locked = true;
                var tryAgain = !loadComplete;
                if (!tryAgain) {
                    tryAgain = (retryCount > 0);
                }
                var stillDelayed = [];
                for (var i = 0, len = delayedListeners.length; i < len; ++i) {
                    var d = delayedListeners[i];
                    if (d) {
                        var el = this.getEl(d[this.EL]);
                        if (el) {
                            this.on(el, d[this.TYPE], d[this.FN], d[this.SCOPE], d[this.ADJ_SCOPE]);
                            delete delayedListeners[i];
                        } else {
                            stillDelayed.push(d);
                        }
                    }
                }
                delayedListeners = stillDelayed;
                var notAvail = [];
                for (i = 0, len = onAvailStack.length; i < len; ++i) {
                    var item = onAvailStack[i];
                    if (item) {
                        el = this.getEl(item.id);
                        if (el) {
                            var scope = (item.override) ? item.obj : el;
                            item.fn.call(scope, item.obj);
                            delete onAvailStack[i];
                        } else {
                            notAvail.push(item);
                        }
                    }
                }
                retryCount = (stillDelayed.length === 0 && notAvail.length === 0) ? 0 : retryCount - 1;
                if (tryAgain) {
                    this.startTimeout();
                }
                this.locked = false;
                return true;
            },
            purgeElement: function(el, recurse, sType) {
                var elListeners = this.getListeners(el, sType);
                if (elListeners) {
                    for (var i = 0, len = elListeners.length; i < len; ++i) {
                        var l = elListeners[i];
                        this.removeListener(el, l.type, l.fn, l.index);
                    }
                }
                if (recurse && el && el.childNodes) {
                    for (i = 0, len = el.childNodes.length; i < len; ++i) {
                        this.purgeElement(el.childNodes[i], recurse, sType);
                    }
                }
            },
            getListeners: function(el, sType) {
                var elListeners = [];
                if (listeners && listeners.length > 0) {
                    for (var i = 0, len = listeners.length; i < len; ++i) {
                        var l = listeners[i];
                        if (l && l[this.EL] === el && (!sType || sType === l[this.TYPE])) {
                            elListeners.push({
                                type: l[this.TYPE],
                                fn: l[this.FN],
                                obj: l[this.SCOPE],
                                adjust: l[this.ADJ_SCOPE],
                                index: i
                            });
                        }
                    }
                }
                return (elListeners.length) ? elListeners : null;
            },
            _unload: function(e, me) {
                for (var i = 0, len = unloadListeners.length; i < len; ++i) {
                    var l = unloadListeners[i];
                    if (l) {
                        var scope = (l[this.ADJ_SCOPE]) ? l[this.SCOPE] : window;
                        l[this.FN].call(scope, this.getEvent(e), l[this.SCOPE]);
                    }
                }
                if (listeners && listeners.length > 0) {
                    for (i = 0, len = listeners.length; i < len; ++i) {
                        l = listeners[i];
                        if (l) {
                            this.removeListener(l[this.EL], l[this.TYPE], l[this.FN], i);
                        }
                    }
                    this.clearCache();
                }
                for (i = 0, len = customEvents.length; i < len; ++i) {
                    customEvents[i].unsubscribeAll();
                    delete customEvents[i];
                }
                for (i = 0, len = legacyEvents.length; i < len; ++i) {
                    delete legacyEvents[i][0];
                    delete legacyEvents[i];
                }
            },
            _getScrollLeft: function() {
                return this._getScroll()[1];
            },
            _getScrollTop: function() {
                return this._getScroll()[0];
            },
            _getScroll: function() {
                var dd = document.documentElement;
                db = document.body;
                if (dd && dd.scrollTop) {
                    return [dd.scrollTop, dd.scrollLeft];
                } else if (db) {
                    return [db.scrollTop, db.scrollLeft];
                } else {
                    return [0, 0];
                }
            }
        };
    }();
    YAHOO.util.Event.on = YAHOO.util.Event.addListener;
    if (document && document.body) {
        YAHOO.util.Event._load();
    } else {
        YAHOO.util.Event.on(window, "load", YAHOO.util.Event._load, YAHOO.util.Event, true);
    }
    YAHOO.util.Event.on(window, "unload", YAHOO.util.Event._unload, YAHOO.util.Event, true);
    YAHOO.util.Event._tryPreloadAttach();
}

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

/*                                                                                                                                                      Copyright (c) 2006, Yahoo! Inc. All rights reserved.                                                                                                    Code licensed under the BSD License:                                                                                                                    http://developer.yahoo.net/yui/license.txt                                                                                                              version: 0.11.0                                                                                                                                         */
YAHOO = window.YAHOO || {};
YAHOO.namespace = function(ns) {
    if (!ns || !ns.length) {
        return null;
    }
    var _2 = ns.split(".");
    var _3 = YAHOO;
    for (var i = (_2[0] == "YAHOO") ? 1 : 0; i < _2.length; ++i) {
        _3[_2[i]] = _3[_2[i]] || {};
        _3 = _3[_2[i]];
    }
    return _3;
};
YAHOO.log = function(_5, _6, _7) {
    var l = YAHOO.widget.Logger;
    if (l && l.log) {
        return l.log(_5, _6, _7);
    } else {
        return false;
    }
};
YAHOO.extend = function(_9, _10) {
    var f = function() {};
    f.prototype = _10.prototype;
    _9.prototype = new f();
    _9.prototype.constructor = _9;
    _9.superclass = _10.prototype;
    if (_10.prototype.constructor == Object.prototype.constructor) {
        _10.prototype.constructor = _10;
    }
};
YAHOO.namespace("util");
YAHOO.namespace("widget");
YAHOO.namespace("example");

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

/* Copyright (c) 2006, Yahoo! Inc. All rights reserved.  Code licensed under the BSD License: http://developer.yahoo.net/yui/license.txt Version: 0.11.1 */
YAHOO.util.Anim = function(el, attributes, duration, method) {
    if (el) {
        this.init(el, attributes, duration, method);
    }
};
YAHOO.util.Anim.prototype = {
    toString: function() {
        var el = this.getEl();
        var id = el.id || el.tagName;
        return ("Anim " + id);
    },
    patterns: {
        noNegatives: /width|height|opacity|padding/i,
        offsetAttribute: /^((width|height)|(top|left))$/,
        defaultUnit: /width|height|top$|bottom$|left$|right$/i,
        offsetUnit: /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
    },
    doMethod: function(attr, start, end) {
        return this.method(this.currentFrame, start, end - start, this.totalFrames);
    },
    setAttribute: function(attr, val, unit) {
        if (this.patterns.noNegatives.test(attr)) {
            val = (val > 0) ? val : 0;
        }
        YAHOO.util.Dom.setStyle(this.getEl(), attr, val + unit);
    },
    getAttribute: function(attr) {
        var el = this.getEl();
        var val = YAHOO.util.Dom.getStyle(el, attr);
        if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
            return parseFloat(val);
        }
        var a = this.patterns.offsetAttribute.exec(attr) || [];
        var pos = !! (a[3]);
        var box = !! (a[2]);
        if (box || (YAHOO.util.Dom.getStyle(el, 'position') == 'absolute' && pos)) {
            val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
        } else {
            val = 0;
        }
        return val;
    },
    getDefaultUnit: function(attr) {
        if (this.patterns.defaultUnit.test(attr)) {
            return 'px';
        }
        return '';
    },
    setRuntimeAttribute: function(attr) {
        var start;
        var end;
        var attributes = this.attributes;
        this.runtimeAttributes[attr] = {};
        var isset = function(prop) {
                return (typeof prop !== 'undefined');
            };
        if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
            return false;
        }
        start = (isset(attributes[attr]['from'])) ? attributes[attr]['from'] : this.getAttribute(attr);
        if (isset(attributes[attr]['to'])) {
            end = attributes[attr]['to'];
        } else if (isset(attributes[attr]['by'])) {
            if (start.constructor == Array) {
                end = [];
                for (var i = 0, len = start.length; i < len; ++i) {
                    end[i] = start[i] + attributes[attr]['by'][i];
                }
            } else {
                end = start + attributes[attr]['by'];
            }
        }
        this.runtimeAttributes[attr].start = start;
        this.runtimeAttributes[attr].end = end;
        this.runtimeAttributes[attr].unit = (isset(attributes[attr].unit)) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
    },
    init: function(el, attributes, duration, method) {
        var isAnimated = false;
        var startTime = null;
        var actualFrames = 0;
        el = YAHOO.util.Dom.get(el);
        this.attributes = attributes || {};
        this.duration = duration || 1;
        this.method = method || YAHOO.util.Easing.easeNone;
        this.useSeconds = true;
        this.currentFrame = 0;
        this.totalFrames = YAHOO.util.AnimMgr.fps;
        this.getEl = function() {
            return el;
        };
        this.isAnimated = function() {
            return isAnimated;
        };
        this.getStartTime = function() {
            return startTime;
        };
        this.runtimeAttributes = {};
        this.animate = function() {
            if (this.isAnimated()) {
                return false;
            }
            this.currentFrame = 0;
            this.totalFrames = (this.useSeconds) ? Math.ceil(YAHOO.util.AnimMgr.fps * this.duration) : this.duration;
            YAHOO.util.AnimMgr.registerElement(this);
        };
        this.stop = function() {
            YAHOO.util.AnimMgr.stop(this);
        };
        var onStart = function() {
                this.onStart.fire();
                for (var attr in this.attributes) {
                    this.setRuntimeAttribute(attr);
                }
                isAnimated = true;
                actualFrames = 0;
                startTime = new Date();
            };
        var onTween = function() {
                var data = {
                    duration: new Date() - this.getStartTime(),
                    currentFrame: this.currentFrame
                };
                data.toString = function() {
                    return ('duration: ' + data.duration + ', currentFrame: ' + data.currentFrame);
                };
                this.onTween.fire(data);
                var runtimeAttributes = this.runtimeAttributes;
                for (var attr in runtimeAttributes) {
                    this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
                }
                actualFrames += 1;
            };
        var onComplete = function() {
                var actual_duration = (new Date() - startTime) / 1000;
                var data = {
                    duration: actual_duration,
                    frames: actualFrames,
                    fps: actualFrames / actual_duration
                };
                data.toString = function() {
                    return ('duration: ' + data.duration + ', frames: ' + data.frames + ', fps: ' + data.fps);
                };
                isAnimated = false;
                actualFrames = 0;
                this.onComplete.fire(data);
            };
        this._onStart = new YAHOO.util.CustomEvent('_start', this, true);
        this.onStart = new YAHOO.util.CustomEvent('start', this);
        this.onTween = new YAHOO.util.CustomEvent('tween', this);
        this._onTween = new YAHOO.util.CustomEvent('_tween', this, true);
        this.onComplete = new YAHOO.util.CustomEvent('complete', this);
        this._onComplete = new YAHOO.util.CustomEvent('_complete', this, true);
        this._onStart.subscribe(onStart);
        this._onTween.subscribe(onTween);
        this._onComplete.subscribe(onComplete);
    }
};
YAHOO.util.AnimMgr = new function() {
    var thread = null;
    var queue = [];
    var tweenCount = 0;
    this.fps = 200;
    this.delay = 1;
    this.registerElement = function(tween) {
        queue[queue.length] = tween;
        tweenCount += 1;
        tween._onStart.fire();
        this.start();
    };
    this.unRegister = function(tween, index) {
        tween._onComplete.fire();
        index = index || getIndex(tween);
        if (index != -1) {
            queue.splice(index, 1);
        }
        tweenCount -= 1;
        if (tweenCount <= 0) {
            this.stop();
        }
    };
    this.start = function() {
        if (thread === null) {
            thread = setInterval(this.run, this.delay);
        }
    };
    this.stop = function(tween) {
        if (!tween) {
            clearInterval(thread);
            for (var i = 0, len = queue.length; i < len; ++i) {
                if (queue[i].isAnimated()) {
                    this.unRegister(tween, i);
                }
            }
            queue = [];
            thread = null;
            tweenCount = 0;
        } else {
            this.unRegister(tween);
        }
    };
    this.run = function() {
        for (var i = 0, len = queue.length; i < len; ++i) {
            var tween = queue[i];
            if (!tween || !tween.isAnimated()) {
                continue;
            }
            if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null) {
                tween.currentFrame += 1;
                if (tween.useSeconds) {
                    correctFrame(tween);
                }
                tween._onTween.fire();
            } else {
                YAHOO.util.AnimMgr.stop(tween, i);
            }
        }
    };
    var getIndex = function(anim) {
            for (var i = 0, len = queue.length; i < len; ++i) {
                if (queue[i] == anim) {
                    return i;
                }
            }
            return -1;
        };
    var correctFrame = function(tween) {
            var frames = tween.totalFrames;
            var frame = tween.currentFrame;
            var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
            var elapsed = (new Date() - tween.getStartTime());
            var tweak = 0;
            if (elapsed < tween.duration * 1000) {
                tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
            } else {
                tweak = frames - (frame + 1);
            }
            if (tweak > 0 && isFinite(tweak)) {
                if (tween.currentFrame + tweak >= frames) {
                    tweak = frames - (frame + 1);
                }
                tween.currentFrame += tweak;
            }
        };
};
YAHOO.util.Bezier = new function() {
    this.getPosition = function(points, t) {
        var n = points.length;
        var tmp = [];
        for (var i = 0; i < n; ++i) {
            tmp[i] = [points[i][0], points[i][1]];
        }
        for (var j = 1; j < n; ++j) {
            for (i = 0; i < n - j; ++i) {
                tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
                tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
            }
        }
        return [tmp[0][0], tmp[0][1]];
    };
};
(function() {
    YAHOO.util.ColorAnim = function(el, attributes, duration, method) {
        YAHOO.util.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
    };
    YAHOO.extend(YAHOO.util.ColorAnim, YAHOO.util.Anim);
    var Y = YAHOO.util;
    var superclass = Y.ColorAnim.superclass;
    var proto = Y.ColorAnim.prototype;
    proto.toString = function() {
        var el = this.getEl();
        var id = el.id || el.tagName;
        return ("ColorAnim " + id);
    };
    proto.patterns.color = /color$/i;
    proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
    proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
    proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
    proto.parseColor = function(s) {
        if (s.length == 3) {
            return s;
        }
        var c = this.patterns.hex.exec(s);
        if (c && c.length == 4) {
            return [parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16)];
        }
        c = this.patterns.rgb.exec(s);
        if (c && c.length == 4) {
            return [parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10)];
        }
        c = this.patterns.hex3.exec(s);
        if (c && c.length == 4) {
            return [parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16)];
        }
        return null;
    };
    proto.getAttribute = function(attr) {
        var el = this.getEl();
        if (this.patterns.color.test(attr)) {
            var val = YAHOO.util.Dom.getStyle(el, attr);
            if (val == 'transparent') {
                var parent = el.parentNode;
                val = Y.Dom.getStyle(parent, attr);
                while (parent && val == 'transparent') {
                    parent = parent.parentNode;
                    val = Y.Dom.getStyle(parent, attr);
                    if (parent.tagName.toUpperCase() == 'HTML') {
                        val = 'ffffff';
                    }
                }
            }
        } else {
            val = superclass.getAttribute.call(this, attr);
        }
        return val;
    };
    proto.doMethod = function(attr, start, end) {
        var val;
        if (this.patterns.color.test(attr)) {
            val = [];
            for (var i = 0, len = start.length; i < len; ++i) {
                val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
            }
            val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
        } else {
            val = superclass.doMethod.call(this, attr, start, end);
        }
        return val;
    };
    proto.setRuntimeAttribute = function(attr) {
        superclass.setRuntimeAttribute.call(this, attr);
        if (this.patterns.color.test(attr)) {
            var attributes = this.attributes;
            var start = this.parseColor(this.runtimeAttributes[attr].start);
            var end = this.parseColor(this.runtimeAttributes[attr].end);
            if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
                end = this.parseColor(attributes[attr].by);
                for (var i = 0, len = start.length; i < len; ++i) {
                    end[i] = start[i] + end[i];
                }
            }
            this.runtimeAttributes[attr].start = start;
            this.runtimeAttributes[attr].end = end;
        }
    };
})();
YAHOO.util.Easing = {
    easeNone: function(t, b, c, d) {
        return c * t / d + b;
    },
    easeIn: function(t, b, c, d) {
        return c * (t /= d) * t + b;
    },
    easeOut: function(t, b, c, d) {
        return -c * (t /= d) * (t - 2) + b;
    },
    easeBoth: function(t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t + b;
        return -c / 2 * ((--t) * (t - 2) - 1) + b;
    },
    easeInStrong: function(t, b, c, d) {
        return c * (t /= d) * t * t * t + b;
    },
    easeOutStrong: function(t, b, c, d) {
        return -c * ((t = t / d - 1) * t * t * t - 1) + b;
    },
    easeBothStrong: function(t, b, c, d) {
        if ((t /= d / 2) < 1) return c / 2 * t * t * t * t + b;
        return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
    },
    elasticIn: function(t, b, c, d, a, p) {
        if (t == 0) return b;
        if ((t /= d) == 1) return b + c;
        if (!p) p = d * .3;
        if (!a || a < Math.abs(c)) {
            a = c;
            var s = p / 4;
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
    },
    elasticOut: function(t, b, c, d, a, p) {
        if (t == 0) return b;
        if ((t /= d) == 1) return b + c;
        if (!p) p = d * .3;
        if (!a || a < Math.abs(c)) {
            a = c;
            var s = p / 4;
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
    },
    elasticBoth: function(t, b, c, d, a, p) {
        if (t == 0) return b;
        if ((t /= d / 2) == 2) return b + c;
        if (!p) p = d * (.3 * 1.5);
        if (!a || a < Math.abs(c)) {
            a = c;
            var s = p / 4;
        } else var s = p / (2 * Math.PI) * Math.asin(c / a);
        if (t < 1) return -.5 * (a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
        return a * Math.pow(2, -10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
    },
    backIn: function(t, b, c, d, s) {
        if (typeof s == 'undefined') s = 1.70158;
        return c * (t /= d) * t * ((s + 1) * t - s) + b;
    },
    backOut: function(t, b, c, d, s) {
        if (typeof s == 'undefined') s = 1.70158;
        return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
    },
    backBoth: function(t, b, c, d, s) {
        if (typeof s == 'undefined') s = 1.70158;
        if ((t /= d / 2) < 1) return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
        return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
    },
    bounceIn: function(t, b, c, d) {
        return c - YAHOO.util.Easing.bounceOut(d - t, 0, c, d) + b;
    },
    bounceOut: function(t, b, c, d) {
        if ((t /= d) < (1 / 2.75)) {
            return c * (7.5625 * t * t) + b;
        } else if (t < (2 / 2.75)) {
            return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
        } else if (t < (2.5 / 2.75)) {
            return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
        } else {
            return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
        }
    },
    bounceBoth: function(t, b, c, d) {
        if (t < d / 2) return YAHOO.util.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
        return YAHOO.util.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
    }
};
(function() {
    YAHOO.util.Motion = function(el, attributes, duration, method) {
        if (el) {
            YAHOO.util.Motion.superclass.constructor.call(this, el, attributes, duration, method);
        }
    };
    YAHOO.extend(YAHOO.util.Motion, YAHOO.util.ColorAnim);
    var Y = YAHOO.util;
    var superclass = Y.Motion.superclass;
    var proto = Y.Motion.prototype;
    proto.toString = function() {
        var el = this.getEl();
        var id = el.id || el.tagName;
        return ("Motion " + id);
    };
    proto.patterns.points = /^points$/i;
    proto.setAttribute = function(attr, val, unit) {
        if (this.patterns.points.test(attr)) {
            unit = unit || 'px';
            superclass.setAttribute.call(this, 'left', val[0], unit);
            superclass.setAttribute.call(this, 'top', val[1], unit);
        } else {
            superclass.setAttribute.call(this, attr, val, unit);
        }
    };
    proto.getAttribute = function(attr) {
        if (this.patterns.points.test(attr)) {
            var val = [superclass.getAttribute.call(this, 'left'), superclass.getAttribute.call(this, 'top')];
        } else {
            val = superclass.getAttribute.call(this, attr);
        }
        return val;
    };
    proto.doMethod = function(attr, start, end) {
        var val = null;
        if (this.patterns.points.test(attr)) {
            var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
            val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
        } else {
            val = superclass.doMethod.call(this, attr, start, end);
        }
        return val;
    };
    proto.setRuntimeAttribute = function(attr) {
        if (this.patterns.points.test(attr)) {
            var el = this.getEl();
            var attributes = this.attributes;
            var start;
            var control = attributes['points']['control'] || [];
            var end;
            var i, len;
            if (control.length > 0 && !(control[0] instanceof Array)) {
                control = [control];
            } else {
                var tmp = [];
                for (i = 0, len = control.length; i < len; ++i) {
                    tmp[i] = control[i];
                }
                control = tmp;
            }
            if (Y.Dom.getStyle(el, 'position') == 'static') {
                Y.Dom.setStyle(el, 'position', 'relative');
            }
            if (isset(attributes['points']['from'])) {
                Y.Dom.setXY(el, attributes['points']['from']);
            } else {
                Y.Dom.setXY(el, Y.Dom.getXY(el));
            }
            start = this.getAttribute('points');
            if (isset(attributes['points']['to'])) {
                end = translateValues.call(this, attributes['points']['to'], start);
                var pageXY = Y.Dom.getXY(this.getEl());
                for (i = 0, len = control.length; i < len; ++i) {
                    control[i] = translateValues.call(this, control[i], start);
                }
            } else if (isset(attributes['points']['by'])) {
                end = [start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1]];
                for (i = 0, len = control.length; i < len; ++i) {
                    control[i] = [start[0] + control[i][0], start[1] + control[i][1]];
                }
            }
            this.runtimeAttributes[attr] = [start];
            if (control.length > 0) {
                this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
            }
            this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
        } else {
            superclass.setRuntimeAttribute.call(this, attr);
        }
    };
    var translateValues = function(val, start) {
            var pageXY = Y.Dom.getXY(this.getEl());
            val = [val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1]];
            return val;
        };
    var isset = function(prop) {
            return (typeof prop !== 'undefined');
        };
})();
(function() {
    YAHOO.util.Scroll = function(el, attributes, duration, method) {
        if (el) {
            YAHOO.util.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
        }
    };
    YAHOO.extend(YAHOO.util.Scroll, YAHOO.util.ColorAnim);
    var Y = YAHOO.util;
    var superclass = Y.Scroll.superclass;
    var proto = Y.Scroll.prototype;
    proto.toString = function() {
        var el = this.getEl();
        var id = el.id || el.tagName;
        return ("Scroll " + id);
    };
    proto.doMethod = function(attr, start, end) {
        var val = null;
        if (attr == 'scroll') {
            val = [this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames), this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)];
        } else {
            val = superclass.doMethod.call(this, attr, start, end);
        }
        return val;
    };
    proto.getAttribute = function(attr) {
        var val = null;
        var el = this.getEl();
        if (attr == 'scroll') {
            val = [el.scrollLeft, el.scrollTop];
        } else {
            val = superclass.getAttribute.call(this, attr);
        }
        return val;
    };
    proto.setAttribute = function(attr, val, unit) {
        var el = this.getEl();
        if (attr == 'scroll') {
            el.scrollLeft = val[0];
            el.scrollTop = val[1];
        } else {
            superclass.setAttribute.call(this, attr, val, unit);
        }
    };
})();

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

/* Copyright (c) 2006, Yahoo! Inc. All rights reserved.  Code licensed under the BSD License: http://developer.yahoo.net/yui/license.txt Version: 0.11.1 */
YAHOO.util.Dom = function() {
    var ua = navigator.userAgent.toLowerCase();
    var isOpera = (ua.indexOf('opera') > -1);
    var isSafari = (ua.indexOf('safari') > -1);
    var isIE = (window.ActiveXObject);
    var id_counter = 0;
    var util = YAHOO.util;
    var property_cache = {};
    var toCamel = function(property) {
            var convert = function(prop) {
                    var test = /(-[a-z])/i.exec(prop);
                    return prop.replace(RegExp.$1, RegExp.$1.substr(1).toUpperCase());
                };
            while (property.indexOf('-') > -1) {
                property = convert(property);
            }
            return property;
        };
    var toHyphen = function(property) {
            if (property.indexOf('-') > -1) {
                return property;
            }
            var converted = '';
            for (var i = 0, len = property.length; i < len; ++i) {
                if (property.charAt(i) == property.charAt(i).toUpperCase()) {
                    converted = converted + '-' + property.charAt(i).toLowerCase();
                } else {
                    converted = converted + property.charAt(i);
                }
            }
            return converted;
        };
    var cacheConvertedProperties = function(property) {
            property_cache[property] = {
                camel: toCamel(property),
                hyphen: toHyphen(property)
            };
        };
    return {
        get: function(el) {
            if (!el) {
                return null;
            }
            if (typeof el != 'string' && !(el instanceof Array)) {
                return el;
            }
            if (typeof el == 'string') {
                return document.getElementById(el);
            } else {
                var collection = [];
                for (var i = 0, len = el.length; i < len; ++i) {
                    collection[collection.length] = util.Dom.get(el[i]);
                }
                return collection;
            }
            return null;
        },
        getStyle: function(el, property) {
            var f = function(el) {
                    var value = null;
                    var dv = document.defaultView;
                    if (!property_cache[property]) {
                        cacheConvertedProperties(property);
                    }
                    var camel = property_cache[property]['camel'];
                    var hyphen = property_cache[property]['hyphen'];
                    if (property == 'opacity' && el.filters) {
                        value = 1;
                        try {
                            value = el.filters.item('DXImageTransform.Microsoft.Alpha').opacity / 100;
                        } catch (e) {
                            try {
                                value = el.filters.item('alpha').opacity / 100;
                            } catch (e) {}
                        }
                    } else if (el.style[camel]) {
                        value = el.style[camel];
                    } else if (isIE && el.currentStyle && el.currentStyle[camel]) {
                        value = el.currentStyle[camel];
                    } else if (dv && dv.getComputedStyle) {
                        var computed = dv.getComputedStyle(el, '');
                        if (computed && computed.getPropertyValue(hyphen)) {
                            value = computed.getPropertyValue(hyphen);
                        }
                    }
                    return value;
                };
            return util.Dom.batch(el, f, util.Dom, true);
        },
        setStyle: function(el, property, val) {
            if (!property_cache[property]) {
                cacheConvertedProperties(property);
            }
            var camel = property_cache[property]['camel'];
            var f = function(el) {
                    switch (property) {
                    case 'opacity':
                        if (isIE && typeof el.style.filter == 'string') {
                            el.style.filter = 'alpha(opacity=' + val * 100 + ')';
                            if (!el.currentStyle || !el.currentStyle.hasLayout) {
                                el.style.zoom = 1;
                            }
                        } else {
                            el.style.opacity = val;
                            el.style['-moz-opacity'] = val;
                            el.style['-khtml-opacity'] = val;
                        }
                        break;
                    default:
                        el.style[camel] = val;
                    }
                };
            util.Dom.batch(el, f, util.Dom, true);
        },
        getXY: function(el) {
            var f = function(el) {
                    if (el.offsetParent === null || this.getStyle(el, 'display') == 'none') {
                        return false;
                    }
                    var parentNode = null;
                    var pos = [];
                    var box;
                    if (el.getBoundingClientRect) {
                        box = el.getBoundingClientRect();
                        var doc = document;
                        if (!this.inDocument(el) && parent.document != document) {
                            doc = parent.document;
                            if (!this.isAncestor(doc.documentElement, el)) {
                                return false;
                            }
                        }
                        var scrollTop = Math.max(doc.documentElement.scrollTop, doc.body.scrollTop);
                        var scrollLeft = Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft);
                        return [box.left + scrollLeft, box.top + scrollTop];
                    } else {
                        pos = [el.offsetLeft, el.offsetTop];
                        parentNode = el.offsetParent;
                        if (parentNode != el) {
                            while (parentNode) {
                                pos[0] += parentNode.offsetLeft;
                                pos[1] += parentNode.offsetTop;
                                parentNode = parentNode.offsetParent;
                            }
                        }
                        if (isSafari && this.getStyle(el, 'position') == 'absolute') {
                            pos[0] -= document.body.offsetLeft;
                            pos[1] -= document.body.offsetTop;
                        }
                    }
                    if (el.parentNode) {
                        parentNode = el.parentNode;
                    } else {
                        parentNode = null;
                    }
                    while (parentNode && parentNode.tagName.toUpperCase() != 'BODY' && parentNode.tagName.toUpperCase() != 'HTML') {
                        pos[0] -= parentNode.scrollLeft;
                        pos[1] -= parentNode.scrollTop;
                        if (parentNode.parentNode) {
                            parentNode = parentNode.parentNode;
                        } else {
                            parentNode = null;
                        }
                    }
                    return pos;
                };
            return util.Dom.batch(el, f, util.Dom, true);
        },
        getX: function(el) {
            return util.Dom.getXY(el)[0];
        },
        getY: function(el) {
            return util.Dom.getXY(el)[1];
        },
        setXY: function(el, pos, noRetry) {
            var f = function(el) {
                    var style_pos = this.getStyle(el, 'position');
                    if (style_pos == 'static') {
                        this.setStyle(el, 'position', 'relative');
                        style_pos = 'relative';
                    }
                    var pageXY = this.getXY(el);
                    if (pageXY === false) {
                        return false;
                    }
                    var delta = [parseInt(this.getStyle(el, 'left'), 10), parseInt(this.getStyle(el, 'top'), 10)];
                    if (isNaN(delta[0])) {
                        delta[0] = (style_pos == 'relative') ? 0 : el.offsetLeft;
                    }
                    if (isNaN(delta[1])) {
                        delta[1] = (style_pos == 'relative') ? 0 : el.offsetTop;
                    }
                    if (pos[0] !== null) {
                        el.style.left = pos[0] - pageXY[0] + delta[0] + 'px';
                    }
                    if (pos[1] !== null) {
                        el.style.top = pos[1] - pageXY[1] + delta[1] + 'px';
                    }
                    var newXY = this.getXY(el);
                    if (!noRetry && (newXY[0] != pos[0] || newXY[1] != pos[1])) {
                        this.setXY(el, pos, true);
                    }
                };
            util.Dom.batch(el, f, util.Dom, true);
        },
        setX: function(el, x) {
            util.Dom.setXY(el, [x, null]);
        },
        setY: function(el, y) {
            util.Dom.setXY(el, [null, y]);
        },
        getRegion: function(el) {
            var f = function(el) {
                    var region = new YAHOO.util.Region.getRegion(el);
                    return region;
                };
            return util.Dom.batch(el, f, util.Dom, true);
        },
        getClientWidth: function() {
            return util.Dom.getViewportWidth();
        },
        getClientHeight: function() {
            return util.Dom.getViewportHeight();
        },
        getElementsByClassName: function(className, tag, root) {
            var method = function(el) {
                    return util.Dom.hasClass(el, className)
                };
            return util.Dom.getElementsBy(method, tag, root);
        },
        hasClass: function(el, className) {
            var re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)');
            var f = function(el) {
                    return re.test(el['className']);
                };
            return util.Dom.batch(el, f, util.Dom, true);
        },
        addClass: function(el, className) {
            var f = function(el) {
                    if (this.hasClass(el, className)) {
                        return;
                    }
                    el['className'] = [el['className'], className].join(' ');
                };
            util.Dom.batch(el, f, util.Dom, true);
        },
        removeClass: function(el, className) {
            var re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', 'g');
            var f = function(el) {
                    if (!this.hasClass(el, className)) {
                        return;
                    }
                    var c = el['className'];
                    el['className'] = c.replace(re, ' ');
                    if (this.hasClass(el, className)) {
                        this.removeClass(el, className);
                    }
                };
            util.Dom.batch(el, f, util.Dom, true);
        },
        replaceClass: function(el, oldClassName, newClassName) {
            var re = new RegExp('(?:^|\\s+)' + oldClassName + '(?:\\s+|$)', 'g');
            var f = function(el) {
                    if (!this.hasClass(el, oldClassName)) {
                        this.addClass(el, newClassName);
                        return;
                    }
                    el['className'] = el['className'].replace(re, ' ' + newClassName + ' ');
                    if (this.hasClass(el, oldClassName)) {
                        this.replaceClass(el, oldClassName, newClassName);
                    }
                };
            util.Dom.batch(el, f, util.Dom, true);
        },
        generateId: function(el, prefix) {
            prefix = prefix || 'yui-gen';
            el = el || {};
            var f = function(el) {
                    if (el) {
                        el = util.Dom.get(el);
                    } else {
                        el = {};
                    }
                    if (!el.id) {
                        el.id = prefix + id_counter++;
                    }
                    return el.id;
                };
            return util.Dom.batch(el, f, util.Dom, true);
        },
        isAncestor: function(haystack, needle) {
            haystack = util.Dom.get(haystack);
            if (!haystack || !needle) {
                return false;
            }
            var f = function(needle) {
                    if (haystack.contains && !isSafari) {
                        return haystack.contains(needle);
                    } else if (haystack.compareDocumentPosition) {
                        return !!(haystack.compareDocumentPosition(needle) & 16);
                    } else {
                        var parent = needle.parentNode;
                        while (parent) {
                            if (parent == haystack) {
                                return true;
                            } else if (parent.tagName.toUpperCase() == 'HTML') {
                                return false;
                            }
                            parent = parent.parentNode;
                        }
                        return false;
                    }
                };
            return util.Dom.batch(needle, f, util.Dom, true);
        },
        inDocument: function(el) {
            var f = function(el) {
                    return this.isAncestor(document.documentElement, el);
                };
            return util.Dom.batch(el, f, util.Dom, true);
        },
        getElementsBy: function(method, tag, root) {
            tag = tag || '*';
            root = util.Dom.get(root) || document;
            var nodes = [];
            var elements = root.getElementsByTagName(tag);
            if (!elements.length && (tag == '*' && root.all)) {
                elements = root.all;
            }
            for (var i = 0, len = elements.length; i < len; ++i) {
                if (method(elements[i])) {
                    nodes[nodes.length] = elements[i];
                }
            }
            return nodes;
        },
        batch: function(el, method, o, override) {
            var id = el;
            el = util.Dom.get(el);
            var scope = (override) ? o : window;
            if (!el || el.tagName || !el.length) {
                if (!el) {
                    return false;
                }
                return method.call(scope, el, o);
            }
            var collection = [];
            for (var i = 0, len = el.length; i < len; ++i) {
                if (!el[i]) {
                    id = id[i];
                }
                collection[collection.length] = method.call(scope, el[i], o);
            }
            return collection;
        },
        getDocumentHeight: function() {
            var scrollHeight = -1,
                windowHeight = -1,
                bodyHeight = -1;
            var marginTop = parseInt(util.Dom.getStyle(document.body, 'marginTop'), 10);
            var marginBottom = parseInt(util.Dom.getStyle(document.body, 'marginBottom'), 10);
            var mode = document.compatMode;
            if ((mode || isIE) && !isOpera) {
                switch (mode) {
                case 'CSS1Compat':
                    scrollHeight = ((window.innerHeight && window.scrollMaxY) ? window.innerHeight + window.scrollMaxY : -1);
                    windowHeight = [document.documentElement.clientHeight, self.innerHeight || -1].sort(function(a, b) {
                        return (a - b);
                    })[1];
                    bodyHeight = document.body.offsetHeight + marginTop + marginBottom;
                    break;
                default:
                    scrollHeight = document.body.scrollHeight;
                    bodyHeight = document.body.clientHeight;
                }
            } else {
                scrollHeight = document.documentElement.scrollHeight;
                windowHeight = self.innerHeight;
                bodyHeight = document.documentElement.clientHeight;
            }
            var h = [scrollHeight, windowHeight, bodyHeight].sort(function(a, b) {
                return (a - b);
            });
            return h[2];
        },
        getDocumentWidth: function() {
            var docWidth = -1,
                bodyWidth = -1,
                winWidth = -1;
            var marginRight = parseInt(util.Dom.getStyle(document.body, 'marginRight'), 10);
            var marginLeft = parseInt(util.Dom.getStyle(document.body, 'marginLeft'), 10);
            var mode = document.compatMode;
            if (mode || isIE) {
                switch (mode) {
                case 'CSS1Compat':
                    docWidth = document.documentElement.clientWidth;
                    bodyWidth = document.body.offsetWidth + marginLeft + marginRight;
                    winWidth = self.innerWidth || -1;
                    break;
                default:
                    bodyWidth = document.body.clientWidth;
                    winWidth = document.body.scrollWidth;
                    break;
                }
            } else {
                docWidth = document.documentElement.clientWidth;
                bodyWidth = document.body.offsetWidth + marginLeft + marginRight;
                winWidth = self.innerWidth;
            }
            var w = [docWidth, bodyWidth, winWidth].sort(function(a, b) {
                return (a - b);
            });
            return w[2];
        },
        getViewportHeight: function() {
            var height = -1;
            var mode = document.compatMode;
            if ((mode || isIE) && !isOpera) {
                switch (mode) {
                case 'CSS1Compat':
                    height = document.documentElement.clientHeight;
                    break;
                default:
                    height = document.body.clientHeight;
                }
            } else {
                height = self.innerHeight;
            }
            return height;
        },
        getViewportWidth: function() {
            var width = -1;
            var mode = document.compatMode;
            if (mode || isIE) {
                switch (mode) {
                case 'CSS1Compat':
                    width = document.documentElement.clientWidth;
                    break;
                default:
                    width = document.body.clientWidth;
                }
            } else {
                width = self.innerWidth;
            }
            return width;
        }
    };
}();
YAHOO.util.Region = function(t, r, b, l) {
    this.top = t;
    this[1] = t;
    this.right = r;
    this.bottom = b;
    this.left = l;
    this[0] = l;
};
YAHOO.util.Region.prototype.contains = function(region) {
    return (region.left >= this.left && region.right <= this.right && region.top >= this.top && region.bottom <= this.bottom);
};
YAHOO.util.Region.prototype.getArea = function() {
    return ((this.bottom - this.top) * (this.right - this.left));
};
YAHOO.util.Region.prototype.intersect = function(region) {
    var t = Math.max(this.top, region.top);
    var r = Math.min(this.right, region.right);
    var b = Math.min(this.bottom, region.bottom);
    var l = Math.max(this.left, region.left);
    if (b >= t && r >= l) {
        return new YAHOO.util.Region(t, r, b, l);
    } else {
        return null;
    }
};
YAHOO.util.Region.prototype.union = function(region) {
    var t = Math.min(this.top, region.top);
    var r = Math.max(this.right, region.right);
    var b = Math.max(this.bottom, region.bottom);
    var l = Math.min(this.left, region.left);
    return new YAHOO.util.Region(t, r, b, l);
};
YAHOO.util.Region.prototype.toString = function() {
    return ("Region {" + "top: " + this.top + ", right: " + this.right + ", bottom: " + this.bottom + ", left: " + this.left + "}");
};
YAHOO.util.Region.getRegion = function(el) {
    var p = YAHOO.util.Dom.getXY(el);
    var t = p[1];
    var r = p[0] + el.offsetWidth;
    var b = p[1] + el.offsetHeight;
    var l = p[0];
    return new YAHOO.util.Region(t, r, b, l);
};
YAHOO.util.Point = function(x, y) {
    if (x instanceof Array) {
        y = x[1];
        x = x[0];
    }
    this.x = this.right = this.left = this[0] = x;
    this.y = this.top = this.bottom = this[1] = y;
};
YAHOO.util.Point.prototype = new YAHOO.util.Region();

#17 JavaScript::Eval (size: 20, repeated: 16)

new XMLHttpRequest()

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

window.addEvent("load", function() {
    $$('.gk_npro_mainwrap').each(function(m, p) {
        var n = m.getProperty('id');
        var a = $(n);
        if ($E('.gk_npro_full_interface', a) && $E('.gk_npro_full_scroll1', a)) {
            var g = $E('.gk_npro_full_scroll1', a).getSize().size.x;
            var f = new Fx.Scroll($E('.gk_npro_full_scroll1', a));
            var h = $ES('.gk_npro_full_tablewrap', a);
            var c = 0;
            $E('.gk_npro_full_interface li', a).setProperty("class", "active");
            $ES('.gk_npro_full_interface li', a).each(function(o, j) {
                o.addEvent("click", function() {
                    f.scrollTo(j * g, 0);
                    $ES('.gk_npro_full_interface li', a).each(function(b, d) {
                        if (d != j) b.removeProperty("class");
                        else b.setProperty("class", "active");
                        c = j
                    })
                })
            });
            $E('.gk_npro_full_prev', a).addEvent("click", function() {
                if (c == 0) {
                    f.scrollTo((h.length - 1) * g, 0);
                    $ES('.gk_npro_full_interface li', a).each(function(b, d) {
                        if (d != h.length - 1) b.removeProperty("class");
                        else b.setProperty("class", "active")
                    });
                    c = h.length - 1
                } else {
                    c--;
                    f.scrollTo(c * g, 0);
                    $ES('.gk_npro_full_interface li', a).each(function(b, d) {
                        if (d != c) b.removeProperty("class");
                        else b.setProperty("class", "active")
                    })
                }
            });
            $E('.gk_npro_full_next', a).addEvent("click", function() {
                if (c == h.length - 1) {
                    f.scrollTo(0, 0);
                    $ES('.gk_npro_full_interface li', a).each(function(b, d) {
                        if (d != 0) b.removeProperty("class");
                        else b.setProperty("class", "active")
                    });
                    c = 0
                } else {
                    c++;
                    f.scrollTo(c * g, 0);
                    $ES('.gk_npro_full_interface li', a).each(function(b, d) {
                        if (d != c) b.removeProperty("class");
                        else b.setProperty("class", "active")
                    })
                }
            })
        }
        if ($E('.gk_npro_short_interface', a)) {
            var i = new Fx.Scroll($E('.gk_npro_short_scroll1', a));
            var k = $ES('.gk_npro_short_ulwrap', a);
            var l = $E('.gk_npro_short_scroll1', a).getSize().size.x;
            var e = 0;
            if ($E('.gk_npro_short_prev', a)) {
                $E('.gk_npro_short_prev', a).addEvent("click", function() {
                    if (e == 0) {
                        i.scrollTo((k.length - 1) * l, 0);
                        e = k.length - 1
                    } else {
                        e--;
                        i.scrollTo(e * l, 0)
                    }
                });
                $E('.gk_npro_short_next', a).addEvent("click", function() {
                    if (e == k.length - 1) {
                        i.scrollTo(0, 0);
                        e = 0
                    } else {
                        e++;
                        i.scrollTo(e * l, 0)
                    }
                })
            }
        }
    })
});

Executed Writes (2)

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

<!doctype html><html><head><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7,IE=edge" /></head><body><script type="text/javascript">var newversion = true;try {if (top.postMessage) {window.onmessage = function(evt) {evt = evt || window.event;try {var message = new Function("return " + evt.data)();} catch (e) {return;}if (/(^|\.)yandex\.(ru|com|ua|kz|by|com\.tr)(:\d{4})?$/.test(evt.origin) && message.name == "script" && message.data) {var head = document.getElementsByTagName("head")[0];var base = document.createElement("base");base.href = message.data;head.appendChild(base);var script = document.createElement("script");script.src = message.data;head.appendChild(script);parent.removeEventListener("message", window.onmessage, false);window.onmessage = null;}};if (navigator.userAgent.indexOf("Firefox/3.6.") > -1) {parent.addEventListener("message", window.onmessage, false);}top.postMessage('{"name":"ping"}', "*");}} catch (e) {}</script></body></html>

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

<a href='http://www.liveinternet.ru/click' target=_blank><img src='//counter.yadro.ru/hit?t53.2;rhttp%3A//live-counter.net/%3Fclick%3D1543781;s1176*885*24;uhttp%3A//live-counter.net/%3Fclick%3D1543781;0.3220299969303724' alt='' title='LiveInternet: ???????? ????? ?????????? ? ??????????? ?? 24 ????' border='0' width='88' height='31'></a>


HTTP Transactions (144)


Request Response
GET / HTTP/1.1

Host: alkhayriairaq.com

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

Content-Type: text/html; charset=iso-8859-1
Date: Wed, 21 Nov 2012 06:09:59 GMT
Server: Apache
Location: http://www.alkhayriairaq.net/new2/
Content-Length: 242
Connection: close
GET /new2/includes/jaxon/widgets/accordion/css/accordion.css HTTP/1.1

Host: www.alkhayriairaq.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/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:11:33 GMT
Accept-Ranges: bytes
Content-Length: 3263
Connection: close
GET /new2/saifcmsimages/css.css HTTP/1.1

Host: www.alkhayriairaq.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/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Tue, 08 Jan 2008 18:46:47 GMT
Accept-Ranges: bytes
Content-Length: 6148
Connection: close
GET /new2/includes/jaxon/widgets/accordion/js/accordion.js HTTP/1.1

Host: www.alkhayriairaq.net

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

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:12:32 GMT
Accept-Ranges: bytes
Content-Length: 6205
Connection: close
GET /new2/includes/jaxon/js/panels.js HTTP/1.1

Host: www.alkhayriairaq.net

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

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:11:28 GMT
Accept-Ranges: bytes
Content-Length: 9369
Connection: close
GET /new2/includes/jaxon/css/panels.css HTTP/1.1

Host: www.alkhayriairaq.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/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:12:15 GMT
Accept-Ranges: bytes
Content-Length: 2530
Connection: close
GET /new2/ HTTP/1.1

Host: www.alkhayriairaq.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
HTTP/1.1 200 OK

Content-Type: text/html
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6; path=/
Connection: close
Transfer-Encoding: chunked
GET /new2/includes/kore/kore.js HTTP/1.1

Host: www.alkhayriairaq.net

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

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:47:19 GMT
Accept-Ranges: bytes
Content-Length: 18705
Connection: close
GET /new2/includes/cssmenus2/skins/arktic_green/vertical.css HTTP/1.1

Host: www.alkhayriairaq.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/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Tue, 08 Jan 2008 21:07:46 GMT
Accept-Ranges: bytes
Content-Length: 6023
Connection: close
GET /new2/saifcmsimages/english_black.png HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Thu, 14 Feb 2008 09:31:34 GMT
Accept-Ranges: bytes
Content-Length: 540
Connection: close
GET /new2/includes/cssmenus2/js/animation.js HTTP/1.1

Host: www.alkhayriairaq.net

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

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Sat, 12 Jan 2008 10:15:46 GMT
Accept-Ranges: bytes
Content-Length: 8501
Connection: close
GET /new2/includes/jaxon/widgets/tooltip/css/tooltip.css HTTP/1.1

Host: www.alkhayriairaq.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/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/includes/jaxon/css/panels.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:14:45 GMT
Accept-Ranges: bytes
Content-Length: 143
Connection: close
GET /new2/saifcmsimages/gallery_thumb_mask.png HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Sat, 29 Dec 2007 06:51:53 GMT
Accept-Ranges: bytes
Content-Length: 867
Connection: close
GET /new2/includes/cssmenus2/js/cssmenus.js HTTP/1.1

Host: www.alkhayriairaq.net

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

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:00 GMT
Server: Apache
Last-Modified: Sat, 12 Jan 2008 10:16:00 GMT
Accept-Ranges: bytes
Content-Length: 46104
Connection: close
GET /new2/includes/jaxon/css/loading.css HTTP/1.1

Host: www.alkhayriairaq.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/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/includes/jaxon/css/panels.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:04:36 GMT
Accept-Ranges: bytes
Content-Length: 594
Connection: close
GET /new2/upload/5.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Thu, 28 Jan 2010 08:29:53 GMT
Accept-Ranges: bytes
Content-Length: 5105
Connection: close
GET /new2/upload/1.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Thu, 18 Feb 2010 12:29:30 GMT
Accept-Ranges: bytes
Content-Length: 31716
Connection: close
GET /new2/upload/rm.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Sat, 03 Apr 2010 08:11:42 GMT
Accept-Ranges: bytes
Content-Length: 35328
Connection: close
GET /new2/upload/hhhh.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Thu, 25 Mar 2010 08:15:17 GMT
Accept-Ranges: bytes
Content-Length: 18852
Connection: close
GET /new2/includes/kore/js/error.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:49:45 GMT
Accept-Ranges: bytes
Content-Length: 546
Connection: close
GET /new2/saifcmsimages/header_middel.gif HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/saifcmsimages/css.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Wed, 09 Jan 2008 10:55:40 GMT
Accept-Ranges: bytes
Content-Length: 62
Connection: close
GET /new2/saifcmsimages/header_default.gif HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/includes/jaxon/widgets/accordion/css/accordion.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Sun, 13 Jan 2008 10:47:03 GMT
Accept-Ranges: bytes
Content-Length: 1920
Connection: close
GET /new2/upload/rrrrkkkk.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Wed, 17 Mar 2010 10:06:54 GMT
Accept-Ranges: bytes
Content-Length: 26719
Connection: close
GET /new2/upload/1m.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Sun, 28 Feb 2010 11:54:47 GMT
Accept-Ranges: bytes
Content-Length: 17244
Connection: close
GET /new2/includes/kore/js/browser/browser.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:54:27 GMT
Accept-Ranges: bytes
Content-Length: 1054
Connection: close
GET /new2/includes/kore/js/JSON.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:49:52 GMT
Accept-Ranges: bytes
Content-Length: 2911
Connection: close
GET /new2/saifcmsimages/header_right.gif HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/saifcmsimages/css.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Wed, 23 Jan 2008 11:11:41 GMT
Accept-Ranges: bytes
Content-Length: 43684
Connection: close
GET /new2/includes/yui/yahoo/yahoo.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:25:43 GMT
Accept-Ranges: bytes
Content-Length: 1415
Connection: close
GET /new2/includes/yui/dom/dom.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:48:12 GMT
Accept-Ranges: bytes
Content-Length: 11544
Connection: close
GET /new2/includes/yui/event/event.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:25:40 GMT
Accept-Ranges: bytes
Content-Length: 10803
Connection: close
GET /new2/includes/yui/animation/animation.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:48:05 GMT
Accept-Ranges: bytes
Content-Length: 14490
Connection: close
GET /new2/includes/yui/connection/connection.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:25:28 GMT
Accept-Ranges: bytes
Content-Length: 8046
Connection: close
GET /new2/includes/kore/js/history/dhtmlHistory.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:54:11 GMT
Accept-Ranges: bytes
Content-Length: 6761
Connection: close
GET /new2/includes/kore/js/dataprovider/htmlprocessor.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:58:07 GMT
Accept-Ranges: bytes
Content-Length: 4639
Connection: close
GET /new2/includes/kore/js/dataprovider/transporter.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:14:40 GMT
Accept-Ranges: bytes
Content-Length: 1719
Connection: close
GET /get/flashplayer/update/current/xml/version_en_win_pl.xml HTTP/1.1

Host: fpdownload2.macromedia.com

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

Content-Type: text/xml
Server: Apache
Last-Modified: Wed, 31 Oct 2012 21:22:10 GMT
Etag: &quot;87de33-256-4cd617ed12480&quot;
Accept-Ranges: bytes
Content-Length: 598
Date: Wed, 21 Nov 2012 06:10:02 GMT
Connection: keep-alive
GET /new2/includes/jaxon/js/multihtmlprovider.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:09:06 GMT
Accept-Ranges: bytes
Content-Length: 3828
Connection: close
GET /new2/includes/kore/js/dataprovider/dataprovider.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:50:31 GMT
Accept-Ranges: bytes
Content-Length: 959
Connection: close
GET /new2/includes/kore/js/loadingindicator/loadingindicator.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:52:18 GMT
Accept-Ranges: bytes
Content-Length: 889
Connection: close
GET /new2/includes/kore/js/dataprovider/htmlprovider.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:07:53 GMT
Accept-Ranges: bytes
Content-Length: 740
Connection: close
GET /new2/includes/jaxon/widgets/widgets.js HTTP/1.1

Host: www.alkhayriairaq.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/javascript, text/html, application/xml, text/xml, */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 22:10:17 GMT
Accept-Ranges: bytes
Content-Length: 2591
Connection: close
GET /new2/saifcmsimages/top.swf HTTP/1.1

Host: www.alkhayriairaq.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://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Date: Wed, 21 Nov 2012 06:10:01 GMT
Server: Apache
Last-Modified: Thu, 10 Jan 2008 08:23:41 GMT
Accept-Ranges: bytes
Content-Length: 142927
Connection: close
GET /new2/saifcmsimages/side.swf HTTP/1.1

Host: www.alkhayriairaq.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://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: application/x-shockwave-flash
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Tue, 15 Jan 2008 09:54:02 GMT
Accept-Ranges: bytes
Content-Length: 33079
Connection: close
GET /new2/upload/11sjkgfjsdfgsdgsdhfgsdfg.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Thu, 25 Feb 2010 10:56:53 GMT
Accept-Ranges: bytes
Content-Length: 34182
Connection: close
GET /new2/upload/2211.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Thu, 18 Feb 2010 07:05:59 GMT
Accept-Ranges: bytes
Content-Length: 33306
Connection: close
GET /new2/upload/entkabat.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Tue, 23 Feb 2010 11:56:10 GMT
Accept-Ranges: bytes
Content-Length: 17586
Connection: close
GET /new2/upload/a1.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Thu, 25 Feb 2010 11:36:55 GMT
Accept-Ranges: bytes
Content-Length: 39541
Connection: close
GET /new2/upload/r6.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Tue, 16 Feb 2010 12:13:04 GMT
Accept-Ranges: bytes
Content-Length: 41433
Connection: close
GET /plugins/content/zaragozatags/css.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 14 Oct 2009 20:04:14 GMT
Etag: &quot;41ac771-af-475eaaabaab80&quot;
Accept-Ranges: bytes
Content-Length: 175
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/themes/wijmo/jquery.wijmo.wijsuperpanel.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;431279a-702-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 1794
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/base-reset.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;42fe8a0-162-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 354
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/themes/wijmo/jquery.wijmo.wijmenu.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;431279b-1587-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 5511
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /media/system/js/caption.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Tue, 09 Sep 2008 20:19:42 GMT
Etag: &quot;41ac65c-6b9-4567c4184d380&quot;
Accept-Ranges: bytes
Content-Length: 1721
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /new2/upload/dsc00519-web.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Tue, 25 Nov 2008 08:48:13 GMT
Accept-Ranges: bytes
Content-Length: 15198
Connection: close
GET /?click=1543781 HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/html; charset=utf-8
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
X-Powered-By: PHP/5.3.16
P3P: CP=&quot;NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM&quot;
Expires: Mon, 1 Jan 2001 00:00:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Last-Modified: Wed, 21 Nov 2012 06:10:03 GMT
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
GET /modules/mod_news_pro_gk1/style/style_standard.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 28 Sep 2009 16:05:00 GMT
Etag: &quot;41ac6c5-1b01-474a575b40300&quot;
Accept-Ranges: bytes
Content-Length: 6913
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /new2/upload/ehfkjsdhfjsdhfkjsdhfjsdh(1).jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Sun, 14 Feb 2010 11:50:55 GMT
Accept-Ranges: bytes
Content-Length: 29531
Connection: close
GET /new2/upload/akjdfhgfjdkghjkdfg.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Sun, 14 Feb 2010 11:42:57 GMT
Accept-Ranges: bytes
Content-Length: 32852
Connection: close
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/themes/aristo/jquery-wijmo2.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;42fe8a5-c3a4-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 50084
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
GET /new2/upload/r.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:02 GMT
Server: Apache
Last-Modified: Tue, 16 Feb 2010 11:54:20 GMT
Accept-Ranges: bytes
Content-Length: 39470
Connection: close
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/external/jquery-1.4.3.min.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;43127ab-12fb2-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 77746
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /media/system/js/mootools.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sun, 06 Jul 2008 21:39:42 GMT
Etag: &quot;41ac657-122a4-45161cbefa380&quot;
Accept-Ranges: bytes
Content-Length: 74404
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /new2/upload/dsc02666.jpg1988.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Sat, 15 Nov 2008 10:56:48 GMT
Accept-Ranges: bytes
Content-Length: 33189
Connection: close
GET /new2/upload/watersplash1.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Mon, 22 Sep 2008 21:54:48 GMT
Accept-Ranges: bytes
Content-Length: 14323
Connection: close
GET /modules/mod_blog_calendar/js/blog_calendar.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 10 Aug 2009 10:12:34 GMT
Etag: &quot;41ac72c-a86-470c6d3144880&quot;
Accept-Ranges: bytes
Content-Length: 2694
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/wijmo/jquery.nc.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;4316652-24-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 36
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /new2/upload/zzzzzzzzzzzz1.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Wed, 12 Nov 2008 07:51:29 GMT
Accept-Ranges: bytes
Content-Length: 17893
Connection: close
GET /new2/upload/new.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Sun, 14 Sep 2008 11:47:48 GMT
Accept-Ranges: bytes
Content-Length: 14435
Connection: close
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/wijmo/jquery.wijmo.wijutil.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;431665b-2fe7-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 12263
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /modules/mod_news_pro_gk1/scripts/engine_standard_compressed.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 28 Sep 2009 16:05:00 GMT
Etag: &quot;41ac6c0-683-474a575b40300&quot;
Accept-Ranges: bytes
Content-Length: 1667
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /modules/mod_blog_calendar/js/blog_list.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 10 Aug 2009 10:12:34 GMT
Etag: &quot;41ac72b-16d-470c6d3144880&quot;
Accept-Ranges: bytes
Content-Length: 365
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /templates/system/css/system.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Wed, 01 Jul 2009 01:01:34 GMT
Etag: &quot;4ccc3a0-569-46d9a76e5b780&quot;
Accept-Ranges: bytes
Content-Length: 1385
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/wijmo/jquery.wijmo.wijmenu.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;431664c-b0cc-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 45260
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
GET /templates/system/css/general.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sun, 06 Jul 2008 21:40:02 GMT
Etag: &quot;4ccc3a3-925-45161cd20d080&quot;
Accept-Ranges: bytes
Content-Length: 2341
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /informer/4951879/3_1_FFFFFFFF_EFEFEFFF_0_pageviews HTTP/1.1

Host: bs.yandex.ru

User-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://live-counter.net/?click=1543781
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Phantom/0.0.0
P3P: CP=&quot;NOI DEVa TAIa OUR BUS UNI STA&quot;
Last-Modified: Wed, 21 Nov 2012 06:10:03 GMT
Expires: Wed, 21 Nov 2012 06:10:03 GMT
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
Pragma: no-cache
Content-Length: 1404
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/external/jquery-ui-1.8.6.custom.min.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;43127a8-32150-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 205136
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /metrika/watch.js HTTP/1.1

Host: mc.yandex.ru

User-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://live-counter.net/?click=1543781
HTTP/1.1 200 OK

Content-Type: application/x-javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Phantom/0.0.0
P3P: CP=&quot;NOI DEVa TAIa OUR BUS UNI STA&quot;
Last-Modified: Fri, 19 Oct 2012 12:23:05 GMT
Content-Encoding: gzip
Expires: Wed, 21 Nov 2012 07:10:03 GMT
Content-Length: 15878
GET /templates/nld_045_15/css/template_default.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Content-Length: 564
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /templates/nld_045_15/js/stchanger.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 07 Nov 2009 15:36:01 GMT
Etag: &quot;4ccc326-a36-477c9b7b3fa40&quot;
Accept-Ranges: bytes
Content-Length: 2614
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /modules/mod_blog_calendar/tmpl/style.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Thu, 15 Sep 2011 12:03:10 GMT
Etag: &quot;41ac726-7a2-4acf9a90edb80&quot;
Accept-Ranges: bytes
Content-Length: 1954
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /templates/nld_045_15/css/template_gray_white.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: text/css
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:19:00 GMT
Etag: &quot;4ccc303-7043-4ce9942084900&quot;
Accept-Ranges: bytes
Content-Length: 28739
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /cache/multithumb_thumbs/b.210.140.16777215.0...images.stories.budet-li-na-planete-perenaselenie.jpg HTTP/1.1

Host: live-counter.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: 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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Tue, 20 Nov 2012 14:45:28 GMT
Etag: &quot;42d099a-2293-4ceee48eef200&quot;
Accept-Ranges: bytes
Content-Length: 8851
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /cache/multithumb_thumbs/b.210.140.16777215.0...images.stories.ec_e_100215_l.jpg HTTP/1.1

Host: live-counter.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: 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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sun, 18 Nov 2012 17:41:29 GMT
Etag: &quot;42d097d-27c8-4cec882bc4440&quot;
Accept-Ranges: bytes
Content-Length: 10184
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /cache/multithumb_thumbs/b.210.140.16777215.0...images.stories.2012-01-18-naselenie_small.jpg HTTP/1.1

Host: live-counter.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: 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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Mon, 19 Nov 2012 07:48:04 GMT
Etag: &quot;42d0984-1c9d-4ced4565a7500&quot;
Accept-Ranges: bytes
Content-Length: 7325
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /cache/multithumb_thumbs/b.210.140.16777215.0...images.stories.00--959.jpg HTTP/1.1

Host: live-counter.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: 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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sun, 18 Nov 2012 18:04:01 GMT
Etag: &quot;42d097e-23ea-4cec8d3522640&quot;
Accept-Ranges: bytes
Content-Length: 9194
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /cache/multithumb_thumbs/b.210.140.16777215.0...images.stories.latte-300x230.jpg HTTP/1.1

Host: live-counter.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: 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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sun, 18 Nov 2012 17:10:13 GMT
Etag: &quot;42d097c-1ec4-4cec812eac740&quot;
Accept-Ranges: bytes
Content-Length: 7876
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/external/jquery.mousewheel.min.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;43127a9-525-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 1317
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/wijmo/jquery.wijmo.wijsuperpanel.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;4316636-11197-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 70039
Keep-Alive: timeout=5, max=98
Connection: Keep-Alive
GET /new2/upload/motafaweq3.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Sat, 13 Sep 2008 10:50:18 GMT
Accept-Ranges: bytes
Content-Length: 30373
Connection: close
GET /new2/upload/f3.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Wed, 23 Jul 2008 08:39:17 GMT
Accept-Ranges: bytes
Content-Length: 19680
Connection: close
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/external/jquery.bgiframe-2.1.3-pre.js HTTP/1.1

Host: live-counter.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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: application/javascript
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;43127a2-6c0-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 1728
Keep-Alive: timeout=5, max=93
Connection: Keep-Alive
GET /new2/upload/dsc00014_(3).jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Wed, 16 Jul 2008 08:55:15 GMT
Accept-Ranges: bytes
Content-Length: 24613
Connection: close
GET /templates/nld_045_15/css/template_default.css HTTP/1.1

Host: live-counter.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/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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Content-Length: 564
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /new2/upload/dsc_5168.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Tue, 15 Jul 2008 11:36:09 GMT
Accept-Ranges: bytes
Content-Length: 22542
Connection: close
GET /new2/upload/zawaj_(3).jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Mon, 14 Jul 2008 10:51:59 GMT
Accept-Ranges: bytes
Content-Length: 22953
Connection: close
GET /templates/nld_045_15/images/gray_white/bottom_top.png HTTP/1.1

Host: live-counter.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: 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://live-counter.net/templates/nld_045_15/css/template_gray_white.css
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 07 Nov 2009 15:36:01 GMT
Etag: &quot;4ccc319-92-477c9b7b3fa40&quot;
Accept-Ranges: bytes
Content-Length: 146
Keep-Alive: timeout=5, max=94
Connection: Keep-Alive
GET /new2/upload/14.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Thu, 19 Jun 2008 08:09:17 GMT
Accept-Ranges: bytes
Content-Length: 18123
Connection: close
GET /new2/upload/1111111.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Sun, 22 Jun 2008 08:26:58 GMT
Accept-Ranges: bytes
Content-Length: 18726
Connection: close
GET /hit?t53.2;rhttp%3A//live-counter.net/%3Fclick%3D1543781;s1176*885*24;uhttp%3A//live-counter.net/%3Fclick%3D1543781;0.3220299969303724 HTTP/1.1

Host: counter.yadro.ru

User-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://live-counter.net/?click=1543781
HTTP/1.1 302 Moved Temporarily

Content-Type: text/html
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: 0W/0.8c
Location: http://counter.yadro.ru/hit?q;t53.2;rhttp%3A//live-counter.net/%3Fclick%3D1543781;s1176*885*24;uhttp%3A//live-counter.net/%3Fclick%3D1543781;0.3220299969303724
Content-Length: 32
Expires: Mon, 21 Nov 2011 20:00:00 GMT
Pragma: no-cache
Cache-Control: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;UNI&quot;
Set-Cookie: FTID=1Gh70x1e_BX2; path=/; expires=Wed, 20 Nov 2013 20:00:00 GMT; domain=.yadro.ru
GET /new2/upload/mob.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Tue, 17 Jun 2008 09:27:18 GMT
Accept-Ranges: bytes
Content-Length: 21289
Connection: close
GET /new2/upload/aak8.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Mon, 07 Apr 2008 06:32:32 GMT
Accept-Ranges: bytes
Content-Length: 15930
Connection: close
GET /watch/4951879?rn=522295&wmode=5&callback=_ymjsp708266&page-ref=http%3A%2F%2Flive-counter.net%2F%3Fclick%3D1543781&page-url=http%3A%2F%2Flive-counter.net%2F%3Fclick%3D1543781&browser-info=j:1:s:1176x885x24:f:10.0.45:w:1x1:z:60:i:20121121071003:en:utf-8:v:1825:c:1:la:en-us:hid:824004514:t:live-counter.net HTTP/1.1

Host: mc.yandex.ru
GET /watch/4951879?rn=522295&amp;wmode=5&amp;callback=_ymjsp708266&amp;page-ref=http%3A%2F%2Flive-counter.net%2F%3Fclick%3D1543781&amp;page-url=http%3A%2F%2Flive-counter.net%2F%3Fclick%3D1543781&amp;browser-info=j:1:s:1176x885x24:f:10.0.45:w:1x1:z:60:i:20121121071003:en:utf-8:v:1825:c:1:la:en-us:hid:824004514:t:live-counter.net 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://live-counter.net/?click=1543781
HTTP/1.1 302 Found

HTTP/1.1 302 Found
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Phantom/0.0.0
P3P: CP=&quot;NOI DEVa TAIa OUR BUS UNI STA&quot;
Last-Modified: Wed, 21 Nov 2012 06:10:04 GMT
Expires: Wed, 21 Nov 2012 06:10:04 GMT
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
Pragma: no-cache
Location: http://mc.yandex.ru/watch/4951879/1?rn=522295&amp;wmode=5&amp;callback=_ymjsp708266&amp;page-ref=http%3A%2F%2Flive-counter.net%2F%3Fclick%3D1543781&amp;page-url=http%3A%2F%2Flive-counter.net%2F%3Fclick%3D1543781&amp;browser-info=j:1:s:1176x885x24:f:10.0.45:w:1x1:z:60:i:20121121071003:en:utf-8:v:1825:c:1:la:en-us:hid:824004514:t:live-counter.net
Set-Cookie: yandexuid=1474113481353478204; domain=.yandex.ru; path=/; expires=Sat, 19-Nov-2022 06:10:04 GMT yabs-sid=212087191353478204; path=/
Content-Length: 0
GET /new2/upload/uu.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Wed, 02 Apr 2008 08:39:25 GMT
Accept-Ranges: bytes
Content-Length: 16511
Connection: close
GET /hit?q;t53.2;rhttp%3A//live-counter.net/%3Fclick%3D1543781;s1176*885*24;uhttp%3A//live-counter.net/%3Fclick%3D1543781;0.3220299969303724 HTTP/1.1

Host: counter.yadro.ru

User-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://live-counter.net/?click=1543781
Cookie: FTID=1Gh70x1e_BX2
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: 0W/0.8c
Connection: Close
Content-Length: 444
Expires: Mon, 21 Nov 2011 20:00:00 GMT
Pragma: no-cache
Cache-Control: no-cache
P3P: policyref=&quot;/w3c/p3p.xml&quot;, CP=&quot;UNI&quot;
Set-Cookie: VID=3mjlLp3mC-n2; path=/; expires=Wed, 20 Nov 2013 20:00:00 GMT; domain=.yadro.ru
GET /watch/4951879/1?rn=522295&wmode=5&callback=_ymjsp708266&page-ref=http%3A%2F%2Flive-counter.net%2F%3Fclick%3D1543781&page-url=http%3A%2F%2Flive-counter.net%2F%3Fclick%3D1543781&browser-info=j:1:s:1176x885x24:f:10.0.45:w:1x1:z:60:i:20121121071003:en:utf-8:v:1825:c:1:la:en-us:hid:824004514:t:live-counter.net HTTP/1.1

Host: mc.yandex.ru
GET /watch/4951879/1?rn=522295&amp;wmode=5&amp;callback=_ymjsp708266&amp;page-ref=http%3A%2F%2Flive-counter.net%2F%3Fclick%3D1543781&amp;page-url=http%3A%2F%2Flive-counter.net%2F%3Fclick%3D1543781&amp;browser-info=j:1:s:1176x885x24:f:10.0.45:w:1x1:z:60:i:20121121071003:en:utf-8:v:1825:c:1:la:en-us:hid:824004514:t:live-counter.net HTTP/1.1

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

Content-Type: text/javascript
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Phantom/0.0.0
P3P: CP=&quot;NOI DEVa TAIa OUR BUS UNI STA&quot;
Last-Modified: Wed, 21 Nov 2012 06:10:04 GMT
Expires: Wed, 21 Nov 2012 06:10:04 GMT
Cache-Control: private, no-cache, no-store, must-revalidate, max-age=0
Pragma: no-cache
Content-Length: 74
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/themes/aristo/images/ui-bg_flat_100_f1f1f1_40x100.png HTTP/1.1

Host: live-counter.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: 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://live-counter.net/modules/mod_artwijmomenu/mod_artwijmomenu/stuff/themes/aristo/jquery-wijmo2.css
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;4312742-b4-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 180
Keep-Alive: timeout=5, max=97
Connection: Keep-Alive
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/themes/aristo/images/ui-icons_00a6dd_256x240.png HTTP/1.1

Host: live-counter.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: 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://live-counter.net/modules/mod_artwijmomenu/mod_artwijmomenu/stuff/themes/aristo/jquery-wijmo2.css
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;4312766-1111-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 4369
Keep-Alive: timeout=5, max=95
Connection: Keep-Alive
GET /modules/mod_artwijmomenu/mod_artwijmomenu/stuff/themes/aristo/images/ui-bg_highlight-soft_15_242122_1x100.png HTTP/1.1

Host: live-counter.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: 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://live-counter.net/modules/mod_artwijmomenu/mod_artwijmomenu/stuff/themes/aristo/jquery-wijmo2.css
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Fri, 16 Nov 2012 09:03:02 GMT
Etag: &quot;4312764-b0e-4ce9908ee5d80&quot;
Accept-Ranges: bytes
Content-Length: 2830
Keep-Alive: timeout=5, max=92
Connection: Keep-Alive
GET /new2/upload/5289.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Wed, 02 Apr 2008 06:14:57 GMT
Accept-Ranges: bytes
Content-Length: 16981
Connection: close
GET /new2/upload/im.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Tue, 01 Apr 2008 10:57:15 GMT
Accept-Ranges: bytes
Content-Length: 17556
Connection: close
GET /new2/upload/1234.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Sat, 22 Mar 2008 06:17:35 GMT
Accept-Ranges: bytes
Content-Length: 16949
Connection: close
GET /new2/upload/eeer.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Wed, 12 Mar 2008 06:26:48 GMT
Accept-Ranges: bytes
Content-Length: 15309
Connection: close
GET /new2/upload/663.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Tue, 11 Mar 2008 10:41:47 GMT
Accept-Ranges: bytes
Content-Length: 15396
Connection: close
GET /new2/upload/mh8.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Mon, 17 Mar 2008 08:17:58 GMT
Accept-Ranges: bytes
Content-Length: 15886
Connection: close
GET /new2/upload/545.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Sat, 23 Feb 2008 09:56:44 GMT
Accept-Ranges: bytes
Content-Length: 18377
Connection: close
GET /new2/upload/ttyt.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Wed, 12 Mar 2008 06:34:49 GMT
Accept-Ranges: bytes
Content-Length: 17549
Connection: close
GET /new2/upload/agathaa_tsh_(2).jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Thu, 17 Jan 2008 09:00:32 GMT
Accept-Ranges: bytes
Content-Length: 6477
Connection: close
GET /new2/upload/www.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Thu, 24 Jan 2008 11:16:05 GMT
Accept-Ranges: bytes
Content-Length: 6207
Connection: close
GET /new2/upload/232.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Wed, 20 Feb 2008 11:07:10 GMT
Accept-Ranges: bytes
Content-Length: 16483
Connection: close
GET /new2/upload/rrr.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Thu, 24 Jan 2008 10:45:33 GMT
Accept-Ranges: bytes
Content-Length: 1733
Connection: close
GET /templates/nld_045_15/images/header.png HTTP/1.1

Host: live-counter.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: 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://live-counter.net/?click=1543781
Cookie: 5e1566d23e23a34a4ff5a1b52841a30a=9a6985186a93348dc1e36f5912f604fd; users_resolution=1176
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/0.9.8e-fips-rhel5 DAV/2 SVN/1.6.11 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
Last-Modified: Sat, 07 Nov 2009 15:36:01 GMT
Etag: &quot;4ccc310-8427b-477c9b7b3fa40&quot;
Accept-Ranges: bytes
Content-Length: 541307
Keep-Alive: timeout=5, max=96
Connection: Keep-Alive
GET /new2/upload/xxx.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Thu, 24 Jan 2008 10:54:25 GMT
Accept-Ranges: bytes
Content-Length: 2115
Connection: close
GET /new2/upload/jawamaa_(2).jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Wed, 16 Jan 2008 09:31:30 GMT
Accept-Ranges: bytes
Content-Length: 11360
Connection: close
GET /new2/upload/4444.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Sat, 23 Feb 2008 09:47:05 GMT
Accept-Ranges: bytes
Content-Length: 15042
Connection: close
GET /new2/upload/aetaam_(1)(1).jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Tue, 15 Jan 2008 10:54:39 GMT
Accept-Ranges: bytes
Content-Length: 12124
Connection: close
GET /new2/saifcmsimages/arrow.gif HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/includes/jaxon/widgets/accordion/css/accordion.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Sat, 29 Dec 2007 06:51:45 GMT
Accept-Ranges: bytes
Content-Length: 74
Connection: close
GET /new2/upload/1110.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:04 GMT
Server: Apache
Last-Modified: Wed, 20 Feb 2008 10:31:03 GMT
Accept-Ranges: bytes
Content-Length: 17437
Connection: close
GET /new2/saifcmsimages/header_selected.gif HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/includes/jaxon/widgets/accordion/css/accordion.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Sun, 13 Jan 2008 10:47:05 GMT
Accept-Ranges: bytes
Content-Length: 3647
Connection: close
GET /new2/saifcmsimages/arrow_selected.gif HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/includes/jaxon/widgets/accordion/css/accordion.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Sat, 29 Dec 2007 06:51:47 GMT
Accept-Ranges: bytes
Content-Length: 73
Connection: close
GET /new2/galleries/DSC00549.JPG HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Sat, 08 Dec 2007 21:43:31 GMT
Accept-Ranges: bytes
Content-Length: 2432
Connection: close
GET /new2/galleries/lll_s.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Sat, 27 Sep 2008 08:00:02 GMT
Accept-Ranges: bytes
Content-Length: 2280
Connection: close
GET /new2/galleries/__________%20________.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Sun, 10 Feb 2008 07:47:06 GMT
Accept-Ranges: bytes
Content-Length: 1815
Connection: close
GET /new2/galleries/Untitled-Scanned-02.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Sat, 09 Feb 2008 09:38:03 GMT
Accept-Ranges: bytes
Content-Length: 2014
Connection: close
GET /new2/galleries/2345667_2.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Tue, 18 Nov 2008 09:08:19 GMT
Accept-Ranges: bytes
Content-Length: 2177
Connection: close
GET /new2/saifcmsimages/images/pix-linx-container_01.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Wed, 09 Jan 2008 08:23:43 GMT
Accept-Ranges: bytes
Content-Length: 8795
Connection: close
GET /new2/saifcmsimages/images/pix-linx-container_03.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Wed, 09 Jan 2008 08:23:42 GMT
Accept-Ranges: bytes
Content-Length: 8458
Connection: close
GET /new2/saifcmsimages/images/pix-linx-container_05.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Wed, 09 Jan 2008 08:23:50 GMT
Accept-Ranges: bytes
Content-Length: 10071
Connection: close
GET /new2/includes/cssmenus2/skins/arktic_green/img/bgtop_v.gif HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/includes/cssmenus2/skins/arktic_green/vertical.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Thu, 24 Jan 2008 07:27:22 GMT
Accept-Ranges: bytes
Content-Length: 1435
Connection: close
GET /new2/includes/cssmenus2/skins/arktic_green/img/bg.gif HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/includes/cssmenus2/skins/arktic_green/vertical.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Thu, 24 Jan 2008 07:14:00 GMT
Accept-Ranges: bytes
Content-Length: 2106
Connection: close
GET /new2/includes/cssmenus2/skins/arktic_green/img/arrow_right_color.gif HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/includes/cssmenus2/skins/arktic_green/vertical.css
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/gif
Date: Wed, 21 Nov 2012 06:10:05 GMT
Server: Apache
Last-Modified: Thu, 24 Jan 2008 07:08:00 GMT
Accept-Ranges: bytes
Content-Length: 67
Connection: close
GET /new2/upload/dsc00344.jpg HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/jpeg
Date: Wed, 21 Nov 2012 06:10:03 GMT
Server: Apache
Last-Modified: Sat, 13 Sep 2008 11:36:25 GMT
Accept-Ranges: bytes
Content-Length: 925858
Connection: close
GET /favicon.ico HTTP/1.1

Host: www.alkhayriairaq.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: 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: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Wed, 21 Nov 2012 06:10:06 GMT
Server: Apache
Content-Length: 328
Connection: close
GET /new2/saifcmsimages/english_gray.png HTTP/1.1

Host: www.alkhayriairaq.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: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: http://www.alkhayriairaq.net/new2/
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 200 OK

Content-Type: image/png
Date: Wed, 21 Nov 2012 06:10:06 GMT
Server: Apache
Last-Modified: Thu, 14 Feb 2008 09:31:33 GMT
Accept-Ranges: bytes
Content-Length: 533
Connection: close
GET /favicon.ico HTTP/1.1

Host: www.alkhayriairaq.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
Cookie: PHPSESSID=5d2a2ac4a6b7d4b5c646ee4e93f898e6
HTTP/1.1 404 Not Found

Content-Type: text/html; charset=iso-8859-1
Date: Wed, 21 Nov 2012 06:10:09 GMT
Server: Apache
Content-Length: 328
Connection: close