function potwierdz(komunikat, url){ 
if(confirm(komunikat)){ document.location.href=url; }
}
function goToProd(kat, prod, link){ 
document.location.href='kat-'+kat+',produkt-'+prod+','+link+'.html'; 
}
function sprawdzpass(a, b, c, d){ 
        var a  = a.value;
        var b = b.value;
        var c = c.value;
        if((a == '') || (b == '')) {
                alert('Musisz wypełnić wszystkie pola');
                return false;
        }
        else if(b != c){
                alert('Podane hasła nie są takie same');
                return false;
        }
else{ d.submit(); }
}


function checkImgSize(){
	if(document.getElementById('foto_male').width > 300){
		document.getElementById('foto_male').width = 300;
	}
	if(document.getElementById('foto_male').height > 200){
		document.getElementById('foto_male').height = 200;
		document.getElementById('foto_male').width = 'auto';
	}
}

