Todd A Marshall - 2002-01-31

My app is creating new XMLDoc() ...
then getting it as xml text.
Now I'd like to show this created xml in a new browser window to look at it.
I can't figure out how to get IE to do this..
any help??? IE can show a file ok.
Thanks
Todd.
======== (notes) =======
IE can show a file, simple one being like this....
<?xml version=\"1.0\"?><root></root>

if it's a file, but how to open a window to it?

w = window.open("","");
w.document.write("View Source for data\n"+xData);
w.document.close()