// JavaScript Document
function display_layer(id_warstwy)
	{
	if (document.getElementById) 
			{ 
			document.getElementById(id_warstwy).style.display=document.getElementById(id_warstwy).style.display=='none' ? 'block' : 'none';
			}
		else if (document.layers) 
		{
		document.id_warstwy.display = document.id_warstwy.display=='none' ? 'block' : 'none';
		}
		else
		{
		document.all.id_warstwy.style.display = document.all.id_warstwy.style.display=='none' ? 'block' : 'none';
		}			
}

function sprawdz(formularz)
{
 for (i = 0; i < formularz.length; i++)
  {
    var pole = formularz.elements[i];
    if ((pole.type == "text" || pole.type == "password" || pole.type == "textarea") && pole.value == "")
    {
      alert("Proszę wypełnić wszystkie pola!");
      return false;
    }
  }
  return true;
}

function mail_link(user,domain)
{
	document.write('<A HR' + 'EF="mai' + 'lto:' + user + '\x40' + domain+ '">');
	document.write(user + '\x40' + domain + '<'+'/A>');	
	return true;
}

function image_change(fotoname)
{
if (d=document.getElementById('duza_fotka'))
	{
	d.src='galerie/'+fotoname;
	}
	else return false;
}

