
function odejmij(sekcja) {
var obiekt = document.getElementById(sekcja);
if( typeof( obiekt ) != "undefined" ) {
if( parseInt( obiekt.value ) < 20 ) {
obiekt.value = parseInt( obiekt.value ) - 1;
document.FormKoszyk.submit();
}
}
}


function dodaj(sekcja) {
var obiekt = document.getElementById(sekcja);
if( typeof( obiekt ) != "undefined" ) {
if( parseInt( obiekt.value ) < 20 ) {
obiekt.value = parseInt( obiekt.value ) + 1;
document.FormKoszyk.submit();
}
}
}
