home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 October / CHIP1002.ISO / exe / COMPUGUI.exe / whdata / whftdata.js next >
Encoding:
Text File  |  2002-04-23  |  437 b   |  24 lines

  1. var gTEA = new Array();
  2. function aTE(sTopicTitle, sTopicURL)
  3. {
  4.     var len = gTEA.length;
  5.     gTEA[len] = new topicEntry(sTopicTitle, sTopicURL);
  6. }
  7.  
  8. function topicEntry(sTopicTitle, sTopicURL)
  9. {
  10.     this.sTopicTitle = sTopicTitle;
  11.     this.sTopicURL = sTopicURL;
  12. }
  13.  
  14. function window_OnLoad()
  15. {
  16.     if (parent && parent != this) {
  17.         if (parent.putFtsTData) 
  18.         {
  19.             parent.putFtsTData(gTEA);
  20.         }
  21.     }
  22. }
  23.  
  24. window.onload = window_OnLoad;