тупанул, спасибо! всё работает
+ в репу
<html><head>
</head><body>
<div id="ttx">Это произвольный текст, который как раз должен выводиться в новом окне</div>
<input type="button" value="Открыть окно" onclick="openas()">
<script>var ttxText = document.getElementById('ttx').innerHTML;
function openas() {
mywindow = open('','newokno','width=700,height=700,status=1,menubar=1');
mywindow.document.open();
mywindow.document.write('<html><head><title>Создаём хтмл-документ');
mywindow.document.write('</title></head><body>');
mywindow.document.write(ttxText);
mywindow.document.write('Это статичный текст');
mywindow.document.write('</body></html>');
mywindow.document.close();
}
</script>