Hallo Günter,
hier ein Beispiel:
<html>
<head><title>Drucktest</title>
<script>
<!--
function druck()
{
if (document.all){
y="<html><head>";
y=y+"<title>"+document.title+"</title></head><body>";
y=y+document.all.druck.innerHTML;
y=y+"</body></html>";
return(y);
}
}
//-->
</script>
</head>
<body>
<table>
<tr><td id="druck"><h1>Viel Text</h1></td><td>auch Text</td></tr></table>
<a href="javascript:druck()">Druckversion</a>
<p>Noch mehr Text</p>
</body>
</html>
Viele Grüße
Antje