home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 September / Chip_2003-09_cd1.bin / internet / navrcholu / NAVRCHOLU_cz_soubory / code < prev    next >
Text File  |  2003-07-31  |  2KB  |  60 lines

  1. var nav_obj = navigator;
  2. var js_ver = 10;
  3. var fl_ver = 0;
  4. var fl_desc;
  5. if (nav_obj.appVersion.indexOf("MSIE")>=0 && nav_obj.appVersion.indexOf("Win")>=0) { 
  6.     document.writeln("<s"+"cript language=\"VBScript\">");
  7.     document.writeln("on error resume next");
  8.     for (i = 3; i < 6; i++)
  9.         document.writeln("if (IsNull(CreateObject(\"ShockwaveFlash.ShockwaveFlash." + i + "\"))) then dummy=0 else fl_ver=" + i + " end if");
  10.     document.writeln("</s"+"cript>"); 
  11. }
  12. if (nav_obj.plugins && nav_obj.plugins["Shockwave Flash"]) {
  13.     fl_desc = nav_obj.plugins["Shockwave Flash"].description;
  14.     fl_ver = parseInt(fl_desc.charAt(fl_desc.indexOf(".") - 1));
  15.  
  16. var java = 0;
  17. var moz_ver = 4;
  18. if (nav_obj.userAgent.substring(0,8) == "Mozilla/") {
  19.     moz_ver = nav_obj.userAgent.substring(8,9);
  20. }
  21.  
  22. if (moz_ver > 2) {
  23.     if (nav_obj.javaEnabled())
  24.         java = 1;
  25. }
  26. var ref = window.parent.document.referrer;
  27. var color_depth = 0;
  28. var res_y = 0;
  29. var res_x = 0;
  30. var win_y = 0;
  31. var win_x = 0;
  32. if (moz_ver > 3  && (screen)) {
  33.     color_depth = screen.colorDepth;
  34.     if (color_depth == 0)
  35.         color_depth = screen.pixelDepth;
  36.     res_y = screen.height;
  37.     res_x = screen.width;
  38.     win_y = (document.all) ? top.document.body.clientHeight : top.innerHeight;
  39.     win_x = (document.all) ? top.document.body.clientWidth : top.innerWidth;
  40. }
  41. var cookie_sup;
  42. var lastYear = new Date();
  43. lastYear.setFullYear(lastYear.getFullYear() - 1);
  44. document.cookie = "nvt=1";
  45. if (document.cookie.indexOf("nvt") != -1) {
  46.     cookie_sup = 1;
  47. } else {
  48.     cookie_sup = 0;
  49. }
  50. document.cookie = "nvt=1; expires=" + lastYear.toGMTString();
  51.  
  52. // res_y, win_y
  53. document.write("<img src=\"http://c1.navrcholu.cz/hit?id=12;flver=" +
  54.     fl_ver + ";jsup=" + java + ";csup=" + cookie_sup + ";ref=" +
  55.     escape(ref) + ";cdepth=" + color_depth + ";screenx=" + res_x +
  56.     ";winx=" + win_x + ";jssup=1;r=" +
  57.     Math.random() + "\" width=\"1\" height=\"1\" " +
  58.     "alt=\"\" border=\"0\">");
  59.