Hi,
I'm on my timer issue again ...
I have a piece of script on my page with a counter. On 30 seconds before it times out, I want to open a popup window that gives the user an option to continue. If the user doesn't respond, the session will timeout itself at the end of the remaining 30 seconds. All of this is done in a Javascript method.
I see that the following is used on a link that calls a popup window:
<a onclick="ntd.push('PopupPage','','',1,0,null,'','','',0,'','','','');" href="#">My Link</a>
In my Javascript method I want the same action as the onclick action. But by only using ndt.push does not work. What should the Javascript be to open PopupPage?
Thys