// <script type="text/javascript">

function forPrint()
{
// wyświetla sam tekst artykułu w osobnym oknie sformatowany do wydruku.
var t=document.title;
var x=document.getElementById("forprint");
noweOkno=window.open('','noweOkno', 'menubar=yes,scrollbars=yes,width=900,height=600');
noweOkno.document.write("<html><head><title>");
noweOkno.document.write(t);
noweOkno.document.write(" - wersja do druku");
noweOkno.document.writeln("</title>");
noweOkno.document.writeln("<meta http-equiv=\"content-type\" content=\"text/html; charset=ISO-8859-2\">");
noweOkno.document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"print.css\">");
noweOkno.document.writeln("</head><body onload=\"window.print()\">");
noweOkno.document.write(x.innerHTML);
noweOkno.document.writeln("</body></html>");
noweOkno.document.close();
}
//</script>
