home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 October / CHIP1002.ISO / exe / COMPUGUI.exe / whdata / whgdata.js < prev    next >
Encoding:
Text File  |  2002-04-23  |  390 b   |  25 lines

  1. var gIEA = new Array();
  2. function aGE(sName, sDef)
  3. {
  4.     var len = gIEA.length;
  5.     gIEA[len] = new gloEntry(sName, sDef);
  6. }
  7.  
  8. function gloEntry(sName, sDef) 
  9. {
  10.     this.sName = sName;
  11.     this.sDef = sDef;
  12.     this.nNKOff = 0;
  13. }
  14.  
  15. function window_OnLoad()
  16. {
  17.     if (parent && parent != this) {
  18.         if (parent.putData) 
  19.         {
  20.             parent.putData(gIEA);
  21.         }
  22.     }
  23. }
  24.  
  25. window.onload = window_OnLoad;