home *** CD-ROM | disk | FTP | other *** search
/ Thomson (Residential) / TGSTPv7203.iso / mac / Documentation / HTML / TG585-v7_fr / wwhelp / wwhimpl / js / scripts / handler.js next >
Text File  |  2007-06-22  |  475b  |  26 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.   WWHFrame.WWHJavaScript.fInit();
  16. }
  17.  
  18. function  WWHHandler_Update(ParamURL)
  19. {
  20. }
  21.  
  22. function  WWHHandler_SyncTOC(ParamURL)
  23. {
  24.   WWHFrame.WWHJavaScript.fSyncTOC(ParamURL);
  25. }
  26.