function druckversion() {

d = new Date();
dtag = d.getDate();
dmon = d.getMonth()+1;
djahr = d.getFullYear();
datum = dtag + '.' + dmon + '.' + djahr;

textToPrint = DruckText.innerHTML;
fenster1=window.open('about:blank','abaca_online','width=600,height=450,resizable=yes,scrollbars=yes');
fenster1.focus();
fenster1.document.open();

fenster1.document.writeln('<html><head><title>');
fenster1.document.writeln(titel.innerHTML);
fenster1.document.writeln('</title>');
fenster1.document.writeln('<link rel="stylesheet"href="style_druck.css"type="text/css">');
fenster1.document.writeln('</head><body onLoad="window.print()">');
fenster1.document.writeln('<div align="left"><img src="logo-lang.gif" width="281" height="52" border="0" alt=""></div><br><br>');
fenster1.document.writeln(textToPrint);
fenster1.document.writeln('<br><div align="right">Quelle: http://www.abaca-online.com<br>');
fenster1.document.writeln('Druckdatum:');
fenster1.document.writeln(datum);
fenster1.document.writeln('</div></body></html>');
fenster1.document.close();

}
