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