Open URL from lotus script

Hi all,how do I open a web link from a lotus script?

My form running in web runs an lotus script agent, which tries to open an url:

dim session as notessession

dim doc as notesdocument

dim returnvalue as variant

dim urlstr as string

set session = new notessession

set doc = session.DocumentContext

urlstr = “http://something.de

returnvalue = evaluate ({@urlopen(“}+urlstr+{”)},doc)

result: nothing. No Url opens, no error message, nothing.

Where is my mistake?

Thanks alot

Subject: open URL from lotus script

at the end of your lotus script, put this

print “[” + urlstr + “]”