/**
 * Wpólne JavaScripty
 * @author Grzegorz 'Kashub' Szefka
 */

function $(id) {
	return document.getElementById(id);
}

function show(el) {
	$(el).style.display = 'block';
}

function hide(el) {
	$(el).style.display = 'none';
}

