home *** CD-ROM | disk | FTP | other *** search
- ////////////////////////////////////////////////////////////////////////////////////////////
- //
- // PRODUCT: Norton Internet Security/Symantec Desktop Firewall
- //
- // NAME: iw-AboutParentalControl.js (Javascript file for iw-AboutParentalControl.HTM)
- //
- // Copyright (c) 2001 by Symantec Corporation. All rights reserved.
- //
- ////////////////////////////////////////////////////////////////////////////////////////////
-
- function OnLoad()
- {
-
- LaunchParentalControl.focus();
-
- }
-
- function OnTabOver()
- {
- // Tab or reverse tab
- var VK_TAB = 9;
-
- if (window.event.keyCode == VK_TAB && (window.event.shiftKey == false))
- window.parent.frames("bottom",0).focus();
- else if (window.event.keyCode == VK_TAB && (window.event.shiftKey == true))
- window.parent.frames("contents",0).focus();
- }
-
-
- function LaunchPC()
- {
- PCWizHelper.LaunchPCWizard();
- }
-
- 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");
-
- }
-
- }