home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 November / Chip_2003-11_cd2.bin / nav2004 / download / NAV / External / NORTON / APP / CfgWzRes.dll / HTML / POSTINSTALLPROGRESS.JS < prev    next >
Text File  |  2003-08-17  |  463b  |  25 lines

  1. var iTimerID;
  2. var MainFrame = window.parent;
  3.  
  4. function OnLoad()
  5. {
  6.     document.body.tabIndex=-1;
  7.     window.title = MainFrame.g_strWizardName;
  8.     iTimerID = setInterval("Run()", 500);
  9. }
  10.  
  11. function Run()
  12. {
  13.     // Kill the timer
  14.  
  15.     clearInterval(iTimerID);
  16.  
  17.     // Activate NAV with the selected settings
  18.  
  19.     MainFrame = window.external.Global;
  20.     MainFrame.frames("contents").PostInstallWorker();
  21.  
  22.     // Close the window
  23.  
  24.     window.navigate("res://closeme.xyz");
  25. }