Display a page from a variableTag(s): Language
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();
}
mail_outline
Send comment, question or suggestion to howto@rgagnon.com
Send comment, question or suggestion to howto@rgagnon.com