home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////////////////////////////////////////////////////////////////////////
- //
- // PRODUCT: Norton Internet Security/Symantec Desktop Firewall
- //
- // NAME: iw-AboutStatus.js (Javascript file for iw-AboutStatus.HTM)
- //
- // Copyright (c) 2001 by Symantec Corporation. All rights reserved.
- //
- ////////////////////////////////////////////////////////////////////////////////////////////
-
- function OnTabOver()
- {
- // Last Control Tab over to the <back, next, close> button.
- // Compare it with the Tab Key Code
- var VK_TAB = 9;
- if (window.event.keyCode == VK_TAB && (window.event.shiftKey != true))
- window.parent.frames("bottom",0).focus();
-
- }
-
- function OnReverseTab()
- {
- // Reverse Tab go back to navigation page
- var VK_TAB = 9;
- if (window.event.keyCode == VK_TAB && (window.event.shiftKey == true))
- window.parent.frames("contents",0).focus();
- }
-
- function OnKeyDownHandler()
- {
- // Last Control Tab over to the <back, next, close> button.
- 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");
-
- }
-
- }
-
- function OnLoad()
- {
- LaunchGStatus.focus();
- }
-
- function LaunchGeneralStatus()
- {
- event.cancelBubble = true;
- event.returnValue = false;
- ConfigInfo.LaunchGeneralStatus();
- }
-
- function LaunchReportingStatus()
- {
- event.cancelBubble = true;
- event.returnValue = false;
- ConfigInfo.LaunchReportingStatus();
- }
-