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 >
Wrap
Text File
|
2005-07-12
|
764b
|
35 lines
<!--
// Declaraci≤n de variables usadas en este script.
var fixedPath, script;
// Se obtiene la ruta del directorio que contiene el archivo de ayuda.
fixedPath = document.styleSheets[0].href;
if(fixedPath.indexOf("mk:@MSITStore:") !=0) {
fixedPath = document.URL;
}
fixedPath = fixedPath.substring(14,fixedPath.lastIndexOf("\\") + 1);
// "Unescape" la ruta (reemplaza "%20" por espacios en blanco).
fixedPath = unescape(fixedPath);
// Se genera el elemento <script>.
script = "<script language='JavaScript' src='" + fixedPath + "vars.js'></" + "script>";
// Se a±ade el elemento <script> al topic.
document.open();
document.write(script);
document.close();
//-->