home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////////////////////////////////////////////////////////////////////////
- //
- // PRODUCT: Norton Internet Security/Symantec Desktop Firewall
- //
- // NAME: iw-AboutLiveUpdate.js (Javascript file for iw-Summary.HTM)
- //
- // Copyright (c) 2001 by Symantec Corporation. All rights reserved.
- //
- ////////////////////////////////////////////////////////////////////////////////////////////
-
-
- function OnKeyDownHandler()
- {
-
- var VK_TAB = 9;
- var VK_ESCAPE = 27;
-
- if (window.event.keyCode == VK_ESCAPE)
- {
- // Escape key.. We want to exit out of the wizard..
- parent.window.navigate("res://closeme.xyz");
-
- }
-
- if (window.event.keyCode == VK_TAB)
- {
- // Last Control Tab over to the <back, next, close> button.
- window.parent.frames("bottom",0).focus();
- }
-
-
- }
-
- function OnFocus()
- {
- // Last Control Tab over to the <back, next, close> button.
- window.parent.frames("bottom",0).focus();
- }
-
-
- function OnLoad()
- {
- var sProductType = WrapNisum.ProductType;
-
- switch (sProductType)
- {
- case "PT_NPF":
- window.NISTitleName1.innerText = WrapNisum.ProductName + " ";
- window.NISSubType.innerText = StrID("IntrustionSubs") + " ";
- window.URLUpdateTxt.innerText = "";
- break
-
- case "PT_NOAD":
- break
-
- case "PT_FE":
- window.NISTitleName1.innerText = WrapNisum.ProductName + " ";
- window.NISSubType.innerText = StrID("SecuritySubs") + " ";
- break
-
- case "PT_PE":
- window.NISTitleName1.innerText = WrapNisum.ProductName + " ";
- window.NISSubType.innerText = StrID("SecuritySubs") + " ";
-
- break;
- }
-
-
- }