
function flip(id)
{
	current=(document.getElementById(id).style.display == 'none') ? 'block' : 'none';
	document.getElementById(id).style.display = current;
}

function zmien(kolor, element)
{
element.style.background=kolor;
return true 
}

