1 var gaFileMapping = new Array();
\r
2 var gaFileTopicMapping = new Array();
\r
4 function fileMapping(sStartKey, sEndKey, sFileName)
\r
6 this.sStartKey = sStartKey;
\r
7 this.sEndKey = sEndKey;
\r
8 this.sFileName = sFileName;
\r
9 this.aFtsKeys = null;
\r
12 function fileTopicMapping(nIdBegin, nIdEnd, sFileName)
\r
14 this.nBegin = nIdBegin;
\r
16 this.sFileName = sFileName;
\r
17 this.aTopics = null;
\r
21 function iWM(sStartKey, sEndKey, sFileName)
\r
23 gaFileMapping[gaFileMapping.length] = new fileMapping(sStartKey, sEndKey, sFileName);
\r
26 function window_OnLoad()
\r
28 if (parent && parent != this && parent.ftsReady)
\r
30 parent.ftsReady(gaFileMapping, gaFileTopicMapping);
\r
34 function iTM(nIdBegin, nIdEnd, sFileName)
\r
36 gaFileTopicMapping[gaFileTopicMapping.length] = new fileTopicMapping(nIdBegin, nIdEnd, sFileName);
\r
39 window.onload = window_OnLoad;
\r