function zablokuj_zestaw(){
	pole=$('zestaw');
	if(pole.checked==1){
		$('szata').setProperty('disabled', 'disabled');
		$('szata').checked=0;
		$('dostosowanie').setProperty('disabled', 'disabled');
		$('dostosowanie').checked=0;
		$('ciecie').setProperty('disabled', 'disabled');
		$('ciecie').checked=0;
		$('instalacja').setProperty('disabled', 'disabled');
		$('instalacja').checked=0;
		$('ilosc').setProperty('disabled', 'disabled');
		$('ilosc').value=0;
	}
	else {
		$('szata').removeProperty('disabled');
		$('dostosowanie').removeProperty('disabled');
		$('ciecie').removeProperty('disabled');
		$('instalacja').removeProperty('disabled');
		$('ilosc').removeProperty('disabled');
		$('ilosc').value=1;
	}
}


function personalData(){
	document.getElementById('dane_firmy').style.display='none';
	document.getElementById('dane_personalne').style.display='block';
}

function companyData(){
	document.getElementById('dane_personalne').style.display='none';
	document.getElementById('dane_firmy').style.display='block';
}

function actPrice(){
	var price=0;
	if($('zestaw').checked==1) { price=$('cena_zestaw').innerHTML.toInt(); $('cenaPFF').setHTML(price); return; }
	if($('szata').checked==1) price=price+$('cena_szata').innerHTML.toInt();
	if($('dostosowanie').checked==1) price=price+$('cena_dostosowanie').innerHTML.toInt();
	if($('ciecie').checked==1) price=price+$('cena_ciecie').innerHTML.toInt();
	if(isNaN($('ilosc').value.contains)) price=price+($('ilosc').value.toInt()*$('cena_licencja').innerHTML.toInt());
	$('cenaPFF').setHTML(price);
}

function start(){
	$('warunki_zestaw').setStyle('display', 'none');
	$('warunki_szata').setStyle('display', 'none');
	var txt = $('ilosc');
	$('ilosc').addEvents({
			'keyup': function() { actPrice();}
	});
	actPrice();
}

function toVisible(d){
	d.setStyle('display', 'block');
}

function toInVisible(d){
	d.setStyle('display', 'none');
}


function toggleVisible(id){
	var x=$(id);
	if(x.getStyle('display')=='none') toVisible(x);
	else toInVisible(x);
}

