function showWindow(title, txt) {
  wnd = window.open("about:blank","_blank");
  wnd.document.body.innerHTML = txt;
  wnd.document.title = title;
  wnd.document.createStyleSheet("style.css");
  wnd.document.body.focus();
}

function showPrintVersion(caption) {
  txt = document.all.humortext.innerHTML;
  showWindow(caption, txt);
}