// JavaScript Document


var refer=true;
function Pokaz(nazwa)
{
  document.getElementById(nazwa).style.visibility = 'visible';
refer=false;
}
function Ukryj(nazwa)
{
  document.getElementById(nazwa).style.visibility = 'hidden';
refer=true;
}



