// JavaScript Document
	function printVersion() {
		newwindow2=window.open('','Druckversion','height=400,width=600,resizable=yes,scrollbars=yes,menubar=yes');
		var tmp = newwindow2.document;
		tmp.writeln ('<html><head>');
		tmp.writeln ('<style>.body { font-family:Verdana, Arial, Helvetica, sans-serif; }</style>');
		tmp.writeln ('</head><body>');
		tmp.writeln ( document.getElementById('text1').innerHTML);
		tmp.write ('</body></html>');
		tmp.close();
		newwindow2.focus();
		opener.print();
	}
