Hi,

I have an ActiveX project running in a browser and I want to make a popup window when an error occurs.
I use some javascript to open help windows in other parts of the project
Code:
Function openNew(url)
	win=window.open(url,"help","height=600,width=650,location=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=no")
end function
I cant use this for my error windows though as an event needs to fire to get it going. (The errors will occur server side.)

Anyone know what I should put to open a new window?

/Andrew