createPopup with x-scripting

wxdqz

New Member
Hi,

Does anyone have any idea of how to implement the microsoft createPopup method in a x-scripting enviroment?

What I need to do is to somehow set the document.domain property of the popup window. Otherwise I get the "Access is Denied" error message.

Thanks in advance,
Broas

Code:

var oPopup = window.createPopup();

oPopup.document.write("something"); // this results in error because the domain is not set (ie: is different from the current page's domain)...
 
Top