home *** CD-ROM | disk | FTP | other *** search
- function WWHelpFrameSet_UpdateFavorite(ParamHREF)
- {
- if (this.mPlatform != 2) // Shorthand for Macintosh
- {
- if ((parent.navigation) &&
- (parent.navigation.contents))
- {
- if (parent.navigation.contents.bWWHAppletLoaded)
- {
- parent.navigation.contents.document.applets[0].updateFavorites(ParamHREF);
- }
- else
- {
- // Applet not yet loaded, so we'll try again a bit later
- //
- setTimeout("parent.WWHelpFrameSet.fUpdateFavorite(\"" + ParamHREF + "\");", 250);
- }
- }
- }
- }
-
- function WWHelpFrameSet_SyncTOC(ParamHREF)
- {
- if (this.mPlatform != 2) // Shorthand for Macintosh
- {
- if ((parent.navigation) &&
- (parent.navigation.contents))
- {
- if (parent.navigation.contents.bWWHAppletLoaded)
- {
- parent.navigation.contents.document.applets[0].syncTOC(ParamHREF);
- }
- }
- }
- }
-