home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 November
/
Chip_2003-11_cd2.bin
/
nav2004
/
download
/
NAV
/
External
/
NORTON
/
NAVUIRES.dll
/
HTML
/
ADVANCED.JS
< prev
next >
Wrap
Text File
|
2003-08-17
|
1KB
|
59 lines
// advanced.js
g_ModuleID = 3028;
// Disable Drag-and-drop support
document.ondragstart = function(){return false;}
// Launch
function ShowUnerase ()
{
try
{
var AppLauncher = new ActiveXObject('Symantec.Norton.AntiVirus.AppLauncher');
}
catch (err)
{
var msg = document.frames("Errors").document.all.ERR_MSG_NO_LAUNCHER.innerText;
var id = document.frames("Errors").document.all.ERR_ID_NO_LAUNCHER.innerText;
g_ErrorHandler.DisplayNAVError (msg, id);
return;
}
try
{
AppLauncher.LaunchUnEraseWizard();
}
catch (NAVErr)
{
AppLauncher.NAVError.LogAndDisplay (0);
}
delete AppLauncher;
}
function ShowWipeInfo ()
{
try
{
var AppLauncher = new ActiveXObject('Symantec.Norton.AntiVirus.AppLauncher');
}
catch (err)
{
var msg = document.frames("Errors").document.all.ERR_MSG_NO_LAUNCHER.innerText;
var id = document.frames("Errors").document.all.ERR_ID_NO_LAUNCHER.innerText;
g_ErrorHandler.DisplayNAVError (msg, id);
return;
}
try
{
AppLauncher.LaunchWipeInfo ();
}
catch (NAVErr)
{
AppLauncher.NAVError.LogAndDisplay (0);
}
delete AppLauncher;
}