//otwórz stronę
function loaddoc(link) {
var link;
window.location.href=link;
}

//otwarcie zdjęcia w nowym oknie
function new_img(link, width, height) {
var link;
var width;
var height;
window.open('window.php?bimage='+link+'', 'foto' ,'left=20,top=20, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

//otwarcie danych w nowym oknie
function new_win(link, width, height) {
var link;
var width;
var height;
window.open(link, 'win' ,'left=20,top=10, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

//oblicza wartosc calego zamowienia w zaleznosci od wybranej formy zaplaty (przelew/pobranie)
function payment() 
{
total = 0;

	dostawca = document.formularz.dostawca.value;
	pobranie = pobr_tab[dostawca];
	cena = cena_tab[dostawca];
	termin = term_tab[dostawca];

	if (document.formularz.gratis.value!=1) //jeżeli nie jest przesyłka gratis
	{
		//z pobraniem 
		if (document.formularz.zaplata.value == 2)
		{
		total = razem + pobranie + cena;
		pack = pobranie + cena;
		}
		else //bez pobrania
		{
		total = razem + cena;
		pack = cena;
		}
	document.formularz.total.value = total.toFixed(2);
	document.formularz.pack.value = pack.toFixed(2);
	}
	document.formularz.term_dost.value = termin;
}


//pokazuje element formularza lub chowa
function show_form(nazwa)
{
	if (document.formularz.elements[nazwa].checked == true)
	document.getElementById('d1').style.display="block";

	else
	document.getElementById('d1').style.display="none";
}
