home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / Chip_2004-11_cd1.bin / software / ss / ssfsetup1_1761720893.exe / {app} / SpyHelp.chm / scripts / seealso.js < prev   
Encoding:
JavaScript  |  2004-07-29  |  565 b   |  26 lines

  1. // Copyright (c) 2002-2003 Quadralay Corporation.  All rights reserved.
  2. //
  3.  
  4. function  WebWorksSeeAlso_Object()
  5. {
  6.   this.mbClickedLink = false;
  7.  
  8.   this.fOnClickButton = WebWorksSeeAlso_OnClickButton;
  9.   this.fOnClickLink   = WebWorksSeeAlso_OnClickLink;
  10. }
  11.  
  12. function  WebWorksSeeAlso_OnClickButton(ParamSeeAlsoObjectID)
  13. {
  14.   if ( ! this.mbClickedLink)
  15.   {
  16.     setTimeout("document.SeeAlso_" + ParamSeeAlsoObjectID + ".Click();", 1);
  17.   }
  18.  
  19.   this.mbClickedLink = false;
  20. }
  21.  
  22. function  WebWorksSeeAlso_OnClickLink()
  23. {
  24.   this.mbClickedLink = true;
  25. }
  26.