// JavaScript Document
function printpreview() {
	newWindow = window.open('../druckvorschau.html','newwin','scrollbars=yes,resizable=yes,width=500,height=600');
	newWindow.document.open();
	newWindow.document.write('<html><title>Druckvorschau</title><body><link href=\"../css/allgemein.css\" rel=\"stylesheet\" type=\"text/css\"><style>#printbox, #backlink {display:none;}a{color:black; text-decoration:none;}h2{margin:0px;padding:0px;font-size:14px;}body{padding:10px;}</style><div align="right"><a href="javascript:window.print();" title="Drucken"><img src="../m/druck.gif" width="16" height="13" border="0" alt="Drucken"></a><p>&nbsp;</p></div>'); 
	newWindow.document.write(document.getElementById('hauptinhalt').innerHTML); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
