
    function winPutText(wt, content) {
      config = "toolbar=no,location=no,directories=no,status=yes,menubar=no";
      w = Math.floor(screen.availWidth * 0.9);
      h = Math.floor(screen.availHeight * 0.8);
      x = Math.floor(screen.availWidth * 0.05);
      y = Math.floor(screen.availHeight * 0.1);
      config += ",width=" + w;
      config += ",height=" + h;
      config += ",left=" + x;
      config += ",top=" + y;
      config += ", scrollbars=yes,resizable=yes";
      wintitle = wt;
      win = window.open("", wintitle, config);
      win.document.location.href = content;
    }

