Author: Real Gagnon
Author's WebSite: http://tactika.com/realhome/realhome.html
function displayHtmlFromVar(target, content) {
/*
** target the Html target where the page is to be displayed
** content the page content
*/
target.close();
target.open("text/html");
target.write(content);
target.close();
}
Posted On: 10-Jul-1999