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
Wrap
Text File
|
2003-10-24
|
565b
|
26 lines
// 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;
}