function przelacz(id,idzwiazane) {
	if (document.getElementById(id).style.display == 'none') {
		document.getElementById(id).style.display = 'block';
		if(idzwiazane!=false)
			document.getElementById(idzwiazane).disabled = false;
	}
	else if (document.getElementById(id).style.display == 'block') {
		document.getElementById(id).style.display = 'none';
		if(idzwiazane!=false) {
			document.getElementById(idzwiazane).disabled = true;
			document.getElementById(idzwiazane).value = '';
		}
	}
}

// skrypt do druku wyników kalkulatora - drukuje srodkową kolumnę tj. div o id="druk" - div jest w kalkulator/wynik.php
function go(data)
{
  var a = window.open('','','scrollbars=yes,width=780,height=550');
	a.document.open("text/html");
  a.document.write('<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8;"><link rel="stylesheet" href="kalkulator_uslug/style.css" /></head><body><center><div style="width: 715px;">');
	a.document.write('<table style="width: 100%;"><tr><td><img src="/aginus/logo.jpg" alt="LOGO AGINUS"></td><td><p style="font-size: 9px; text-align: right;">Kalkulację wykonano<br>' + data + '</p></td></tr></table>');
	a.document.write('<p style="text-align: center; font-weight: bold; font-size: 12px; margin-bottom: 15px;">KALKULATOR - WYNIKI</p>');
	a.document.write('<div id="kalk_uslug">');
	a.document.write(document.getElementById('druk').innerHTML);
	a.document.write('</div>');
	a.document.write('<p style="font-size: 10px; margin: 12px 0 0 0; padding: 0 0 10px 0; text-align: center;">Powyższa oferta nie stanowi oferty handlowej w rozumieniu kodeksu cywilnego oraz innych<br>właściwych przepisów prawnych. Firma AGINUS zastrzega sobie prawo do zmiany cen.<br>Podane ceny są cenami netto w PLN, do których należy doliczyć 23% VAT.</p>');
	a.document.write('<div style="text-align: center; font-size: 10px; margin-top: 5px auto 0 auto; padding: 6px 0 2px 0; border-top: 1px solid #000000; width: 300px;">&#169 2007-2011 <b>AGINUS</b> Hosting i projektowanie www</div>');
  a.document.write('<p style="text-align: left; font-size: 10px; padding-top: 2px; padding-bottom: 10px;">01-687 Warszawa<br>ul. Lektykarska 29 lok. 5<br>Tel. (22) 639-32-52<br>Fax (22) 639-32-50<br>e-mail: handlowy@aginus.pl</p>');
	a.document.write('</div></center></body></html>');
	a.document.close();
	a.print();
}

