function $(id) {
	if (document.getElementById) return document.getElementById(id);
	else if (document.all) return document.all[id];
	else if (document.layers) return document.layers[id];
}
function ukryjElement(nazwa) {
	$(nazwa).style.display = 'none';
}
function PokazElement(nazwa) {
	$(nazwa).style.display = 'inline';
}