// JavaScript Document
function sprawdz(f) {
  if (f.czy.select) {
    if (f.nazwiskopl.disabled==true) {
      f.nazwiskopl.disabled=false;
    } else {
      f.nazwiskopl.value="";
      f.nazwiskopl.disabled=true;
    }
    if (f.nazwapl.disabled==true) {
      f.nazwapl.disabled=false;
    } else {
      f.nazwapl.value="";
      f.nazwapl.disabled=true;
    }
    if (f.adrespl.disabled==true) {
      f.adrespl.disabled=false;
    } else {
      f.adrespl.value="";
      f.adrespl.disabled=true;
    }
    if (f.nippl.disabled==true) {
      f.nippl.disabled=false;
    } else {
      f.nippl.value="";
      f.nippl.disabled=true;
    }
  }
}

function test(g) {
  if (g.czy.select) {
    if (g.czy.disabled==true) {
      g.czy.disabled=false;
    } else {
      g.czy.value="";
      g.czy.disabled=true;
    }
  }
}


function focusingOn(obj) {
  obj.style.backgroundColor = '#666';
  }

function focusingOff(obj) {
  obj.style.backgroundColor = '#222';
  }
function focusingOnParz(obj) {
  obj.style.backgroundColor = '#666';
  }

function focusingOffParz(obj) {
  obj.style.backgroundColor = '#444';
  }
