function $(id) {
	return document.getElementById(id);
}

function onlyShow(element) {

  $(element).style.display='';

}

function showAndHide(element) {

  if($(element).style.display=='none') { 
	$(element).style.display='';
  } else {
	$(element).style.display='none';
  }

}

function isInteger(x){
  if (x == Math.round(x)) {
	return true;
  } else {
	alert('Ilość musi być całkowita !');
	return false;
  }
}

function PoliczRate(koszyk) {/*Żagiel*/
	window.open('https://www.zagiel.com.pl/kalkulator/index_smart.php?action=getklientdet_si_rata&shopNo=28011111&goodsValue='+koszyk, 'Policz_rate','width=630,height=500,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
}

function nowe_okno() {/*Żagiel*/
	window.open('https://www.zagiel.com.pl/kalkulator/jak_kupic.html', 'nowe_okno','width=600,height=500,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
}

function validate_Zagiel() {/*Żagiel*/
  //if (document.frm_koszyk.platnosc_raty.checked==true && document.frm_koszyk.id_nazwy_pola_raty_zgoda.checked==false){
  if ($('platnosc_raty')) {
	  if ($('platnosc_raty').checked==true && $('id_nazwy_pola_raty_zgoda').checked==false){
		alert ("Zanim złożysz zamówienie, zapoznaj sie z procedura udzielenia kredytu ratalnego eKredyt Żagiel.");
		return false;
	 } else {
		return true;
	 }
  } else {
	return true;
  }
}

function koszyk_submit(f, action_wartosc) {/*koszyk krok 1*/  
  $('frm_koszyk').action=action_wartosc; 
  $('frm_koszyk').submit();     
} 

var tabCurrent='';

// inicjalizacja systemu zakladek
function tabInit(startTab) {
	tabCurrent=startTab;
	$(tabCurrent+'_zakladka').className='wybrana';
}

// przełączenie zakladek
function tabChange(toWhich,terminDostawy) {
	if (tabCurrent) {
	  $(tabCurrent+'_zakladka').className='dowybrania';
	}
	$(toWhich+'_zakladka').className='wybrana';
	$('koszyk_termin_dostawy').value = terminDostawy;
	$('dostawa_expres_2').checked = true;
	tabCurrent=toWhich;
}

function tabChange_2() {
	if (tabCurrent) {
	  $(tabCurrent+'_zakladka').className='dowybrania';
	}
	$('koszyk_termin_dostawy').value = '';

}

function koszyk_2_termin_hide(that) {
  if(that.checked==true) {
	$('koszyk_2_termin').style.display='none';
  } else {
	$('koszyk_2_termin').style.display='';

  }
}

function koszyk_2_termin_show(that) {
  if(that.checked==true) {
	$('koszyk_2_termin').style.display='';
  } else {
	$('koszyk_2_termin').style.display='none';

  }
}

function check_koszyk2() {
  if (($('dostawa_expres').checked==false) && ($('dostawa_expres_2').checked==false)) {
	alert('Proszę określić termin dostawy');
	return false;
  } else {
	if ($('koszyk_termin_dostawy').value=='') {
	  alert('Proszę określić termin dostawy');
	  return false;
	} else {
	  return true;
	}
  }

	  return false;
}

