I have written a simple script to for a popup window within a script web item. The script runs fine, except it does not show the content of the popup window.
my_window= window.open ("",
"mywindow1","status=1,width=350,height=150");
my_window.document.write('<H1>Popup Test!</H1>');
I was expecting the popup window ot show 'Pop up Test".
Anyidea?