home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 June / PCWorld_2007-06_cd.bin / akce / Panda / IS2007.exe / Adicional / Slovak / term.js < prev    next >
Text File  |  2005-07-12  |  764b  |  35 lines

  1.  
  2. <!--
  3.  
  4.    // Declaraci≤n de variables usadas en este script.
  5.  
  6.    var fixedPath, script;
  7.  
  8.    // Se obtiene la ruta del directorio que contiene el archivo de ayuda.
  9.  
  10.    fixedPath = document.styleSheets[0].href;
  11.  
  12.    if(fixedPath.indexOf("mk:@MSITStore:") !=0) {
  13.       fixedPath = document.URL;
  14.    }
  15.  
  16.    fixedPath = fixedPath.substring(14,fixedPath.lastIndexOf("\\") + 1);
  17.  
  18.    // "Unescape" la ruta (reemplaza "%20" por espacios en blanco).
  19.  
  20.    fixedPath = unescape(fixedPath);
  21.  
  22.    // Se genera el elemento <script>.
  23.  
  24.    script = "<script language='JavaScript' src='" + fixedPath + "vars.js'></" + "script>";
  25.  
  26.    // Se a±ade el elemento <script> al topic.
  27.  
  28.    document.open();
  29.  
  30.    document.write(script);
  31.  
  32.    document.close();
  33.  
  34. //-->
  35.