home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 April / PCWorld_2004-04_cd.bin / software / vyzkuste / spysweeper / ssfsetup1_9199452.exe / SpyHelp.chm / scripts / seealso.js < prev   
Text File  |  2003-10-24  |  565b  |  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.