function pokaz_tytul()
{
	if(document.forms.form_reg.udzial.value == 1)
	{
		document.getElementById('tytul_referatu').style.display="";
	}
	else
	{
		document.getElementById('tytul_referatu').style.display="none";
	}
}

function on_submit()
{
   var poprawnosc = true;
	var tekst = "Brak lub niepoprawne dane:\n";

	if (document.forms.form_reg.imie.value.length < 3 )
	{
		poprawnosc = false;
		tekst = tekst + "\t - imie\n";
	}
	if (document.forms.form_reg.nazwisko.value.length < 3 )
	{
		poprawnosc = false;
		tekst = tekst + "\t - nazwisko\n";
	}
	if (document.forms.form_reg.adres.value.length < 3 )
	{
		poprawnosc = false;
		tekst = tekst + "\t - adres\n";
	}

	
	if (poprawnosc == true)
	{
		document.forms.form_reg.submit();
	}
	else
	{
		alert(tekst);
	}
}
