A Very Basic question - Launch new window with on the fly content, not a HTML FILE.
Created Mar 21, 2003
Joe Millionaire var handle = window.open("about:blank", ...);
then
-or-
var handle = window.open("", ...);
then
handle.document.open();
handle.document.write(...);
handle.document.close();