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 >
Wrap
Text File
|
2003-08-17
|
463b
|
25 lines
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");
}