function setFoto(id) {
	if (e = document.getElementById('foto_'+id)) {
		var tab = e.parentNode.getElementsByTagName('img');
		for (var i = 0, j = tab.length; i < j; i++) {
			tab[i].style.display = 'none';
		}
		e.style.display = 'inline';
	}
	return void(0);
}

function showFoto(id) {
	window.open(dirPath+'_foto_window.php?id='+id+'&sze='+screen.width+'&wys='+screen.height, 'Foto', 'menubar=no, toolbar=no, location=no, scrollbars=no, resizable=yes, status=no, width=800, height=60, left=100, top=50');
	return void(0);
}

function changeBackground(id) {
	if (e = document.getElementById('bgFoto')) {
		e.style.backgroundImage = e.style.backgroundImage.substr(0, e.style.backgroundImage.lastIndexOf('_')) + '_' + id + '.jpg)';
	}
	return void(0);
}
