home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 November
/
Chip_2003-11_cd2.bin
/
nav2004
/
download
/
NAV
/
External
/
NORTON
/
APP
/
NAVComUI.dll
/
HTML
/
MEMORYSCANALERT.JS
< prev
next >
Wrap
Text File
|
2003-08-17
|
503b
|
26 lines
var MainFrame = window.parent;
var iTimerID;
var bTimerRunning = false;
var TIMEOUT = 20000;
function OnLoad()
{
// Setup a timer to automatically close the window after 20 secs
OkButton.focus();
iTimerID = setInterval("OnOkButton()", TIMEOUT);
bTimerRunning = true;
}
function OnOkButton()
{
// If the timer is running
if (bTimerRunning == true)
{
// cancel the timer
clearInterval(iTimerID);
}
// Close the window
MainFrame.navigate("res://closeme.xyz");
}