home *** CD-ROM | disk | FTP | other *** search
/ Thomson (Residential) / TGSTPv7203.iso / mac / Documentation / HTML / TG790_de / wwhelp / wwhimpl / common / scripts / handler.js < prev    next >
Text File  |  2007-06-22  |  774b  |  33 lines

  1. // Copyright (c) 2000-2001 Quadralay Corporation.  All rights reserved.
  2. //
  3.  
  4. function  WWHHandler_Object()
  5. {
  6.   this.mbInitialized = false;
  7.  
  8.   this.fInit    = WWHHandler_Init;
  9.   this.fUpdate  = WWHHandler_Update;
  10.   this.fSyncTOC = WWHHandler_SyncTOC;
  11. }
  12.  
  13. function  WWHHandler_Init()
  14. {
  15.   this.mbInitialized = true;
  16.   WWHFrame.WWHHelp.fHandlerInitialized();
  17. }
  18.  
  19. function  WWHHandler_Update(ParamURL)
  20. {
  21. }
  22.  
  23. function  WWHHandler_SyncTOC(ParamURL)
  24. {
  25.   var  DocumentURL;
  26.  
  27.  
  28.   // Switch to frameset with navigation
  29.   //
  30.   DocumentURL = WWHFrame.WWHHelp.fGetBookFileHREF(ParamURL);
  31.   WWHFrame.WWHSwitch.fExec(false, WWHFrame.WWHHelp.mHelpURLPrefix + "/wwhelp/wwhimpl/common/html/wwhelp.htm?href=" + WWHStringUtilities_RestoreEscapedSpaces(DocumentURL));
  32. }
  33.