
function getE(idElementu) {
	return document.getElementById(idElementu);
	}

function lista(wiersz, praca, kolumn, oryKolor) {
	if (praca == 1) {
		for (i=1; i<=kolumn; ++i) {
			getE("wiersz_" + wiersz + i).style.backgroundColor = '#FDF3E4';
			}
	} else {
		for (i=1; i<=kolumn; ++i) {
			getE("wiersz_" + wiersz + i).style.backgroundColor = oryKolor;
			}
		}
	}

function przelaczFoto(nUrl, nSzer, nWys) {
	getE("duzaFotografia").src = "../" + nUrl;
	getE("duzaFotografia").width = nSzer;
	getE("duzaFotografia").height = nWys;
	}


