home *** CD-ROM | disk | FTP | other *** search
- var iTimerID;
- var MainFrame = window.parent;
-
- function OnLoad()
- {
- document.body.tabIndex=-1;
- window.title = MainFrame.g_strWizardName;
- iTimerID = setInterval("Run()", 500);
- }
-
- function Run()
- {
- // Kill the timer
-
- clearInterval(iTimerID);
-
- // Activate NAV with the selected settings
-
- MainFrame = window.external.Global;
- MainFrame.frames("contents").PostInstallWorker();
-
- // Close the window
-
- window.navigate("res://closeme.xyz");
- }