OnCLick even on Web is being treated as onFiltered event

I have a form, which can be sent to multiple recipients (using doc.send method). However, the recepients might not be the Notes client users. This means that the document could be displayed both on Web or on client based on from where the recepients access their mail box.

In the document, I need a link, which will open a small IE window with the parameters.

The text that i have embedded on the form is a Pass Thru HTML text and the form properties are selected as “Render Pass Thru HTML”

the following text is written on the form:

click here

This link is displayed as a clickable link both on Notes client and Web. But on clicking nothing happens. the onCLick event becomes the onFiltered event.

Similar thing happens when I create a ACtion hotspot & on Web onClick i call the javascript to open the link. The onClick again becomes onFiltered. so nothing happens.

Pls advise what to do.

Subject: OnCLick even on Web is being treated as onFiltered event

The onclick event is a script event, not a URI container. You should NOT use the javascript: keyword – that constitutes a syntax error.

Subject: OnCLick event on Web is being treated as onFiltered event

I have removed the Javascript keyword.

If I use the following text :

click here

The OnClick still becomes onFiltered.

However, if I use the following text:

now click here

it works perfectly fine.

But I donot want to use the 2nd option 'coz I want to hide the link from the users who are trying to open it.

The other option that I have tried is : Creating a Hotspot button on the form and giving its Web (onRun) onClick event for Javascript. the following is used on the OnClick event:

window.open(“[URL SYNTAX]”, ‘xyz’, ‘width = 400’)

still the button does not work on the receieved email