// skrypt do druku wyników kalkulatora - drukuje srodkową kolumnę tj. div o id="druk" - div jest w kalkulator/wynik.php

function go()
{
  var a = window.open('','','scrollbars=yes,width=700,height=500');
	a.document.open("text/html");
  a.document.write('<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8;"></head><body><div style="width: 680px; text-align: center; margin: 10px auto;">');
	a.document.write('<img src="druk/precoptic.jpg" alt="Precoptic">');
	a.document.write('</div>');
	a.document.write('</body></html>');
	a.document.close();
	a.print();
}

