
function osoba() { // by krzanik@o2.pl
h1="nie dotyczy";
if (document.prenumerata.elements['kto'][0].checked) {
document.prenumerata.firma.disabled=false;
document.prenumerata.www.disabled=false;
document.prenumerata.nip.disabled=false;
document.prenumerata.firma.value=firmamem;
document.prenumerata.www.value=wwwmem;
document.prenumerata.nip.value=nipmem;
}
else {
if (!document.prenumerata.firma.disabled) firmamem=document.prenumerata.firma.value;
if (!document.prenumerata.www.disabled) wwwmem=document.prenumerata.www.value;
if (!document.prenumerata.nip.disabled) nipmem=document.prenumerata.nip.value;
document.prenumerata.firma.value=h1;
document.prenumerata.firma.disabled=true;
document.prenumerata.www.value=h1;
document.prenumerata.www.disabled=true;
document.prenumerata.nip.value=h1;
document.prenumerata.nip.disabled=true;
}
}

function pismo() { // by krzanik@o2.pl
h2="nie dotyczy";
if (document.prenumerata.elements['adres'][1].checked) {
document.prenumerata.ulica2.disabled=false;
document.prenumerata.numer2.disabled=false;
document.prenumerata.miasto2.disabled=false;
document.prenumerata.kod2.disabled=false;
document.prenumerata.firma2.disabled=false;
document.prenumerata.nip2.disabled=false;
if (document.prenumerata.ulica2.value == 'nie dotyczy') { document.prenumerata.ulica2.value=ulica2mem; }
if (document.prenumerata.numer2.value == 'nie dotyczy') { document.prenumerata.numer2.value=numer2mem; }
if (document.prenumerata.miasto2.value == 'nie dotyczy') { document.prenumerata.miasto2.value=miasto2mem; }
if (document.prenumerata.kod2.value == 'nie dotyczy') { document.prenumerata.kod2.value=kod2mem; }
if (document.prenumerata.firma2.value == 'nie dotyczy') { document.prenumerata.firma2.value=firma2mem; }
if (document.prenumerata.nip2.value == 'nie dotyczy') { document.prenumerata.nip2.value=nip2mem; }
} else {
if (!document.prenumerata.ulica2.disabled) ulica2mem=document.prenumerata.ulica2.value;
if (!document.prenumerata.numer2.disabled) numer2mem=document.prenumerata.numer2.value;
if (!document.prenumerata.miasto2.disabled) miasto2mem=document.prenumerata.miasto2.value;
if (!document.prenumerata.kod2.disabled) kod2mem=document.prenumerata.kod2.value;
if (!document.prenumerata.firma2.disabled) firma2mem=document.prenumerata.firma2.value;
if (!document.prenumerata.nip2.disabled) nip2mem=document.prenumerata.nip2.value;
document.prenumerata.kod2.value=h2;
document.prenumerata.kod2.disabled=true;
document.prenumerata.ulica2.value=h2;
document.prenumerata.ulica2.disabled=true;
document.prenumerata.numer2.value=h2;
document.prenumerata.numer2.disabled=true;
document.prenumerata.miasto2.value=h2;
document.prenumerata.miasto2.disabled=true;
document.prenumerata.firma2.value=h2;
document.prenumerata.firma2.disabled=true;
document.prenumerata.nip2.value=h2;
document.prenumerata.nip2.disabled=true;
}
}


