home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c) 2002-2003 Quadralay Corporation. All rights reserved.
- //
-
- function WebWorksSeeAlso_Object()
- {
- this.mbClickedLink = false;
-
- this.fOnClickButton = WebWorksSeeAlso_OnClickButton;
- this.fOnClickLink = WebWorksSeeAlso_OnClickLink;
- }
-
- function WebWorksSeeAlso_OnClickButton(ParamSeeAlsoObjectID)
- {
- if ( ! this.mbClickedLink)
- {
- setTimeout("document.SeeAlso_" + ParamSeeAlsoObjectID + ".Click();", 1);
- }
-
- this.mbClickedLink = false;
- }
-
- function WebWorksSeeAlso_OnClickLink()
- {
- this.mbClickedLink = true;
- }
-