function sprawdzanieFormularza(formularz)
{
	while(document.getElementById("uwagi").hasChildNodes())
	{
		wezel_tekstowy=document.getElementById("uwagi").childNodes[0];
		document.getElementById("uwagi").removeChild(wezel_tekstowy);
	}
	
	if(formularz.email.value == "" && formularz.tresc.value == "")
	{
		document.getElementById("uwagi").style.padding="8px";
		komunikat=document.createTextNode("Nie można wysłać pustej wiadomości!");
		document.getElementById("uwagi").appendChild(komunikat);
		return false;
	}
	else if(formularz.email.value == "")
	{
		document.getElementById("uwagi").style.padding="8px";
		komunikat=document.createTextNode("Podaj swój ades e-mail w odpowiednim polu, abyśmy mogli odpowiedzieć na to zapytanie!");
		document.getElementById("uwagi").appendChild(komunikat);
		return false;
	}
	else if(formularz.tresc.value == "")
	{
		document.getElementById("uwagi").style.padding="8px";
		komunikat=document.createTextNode("Nie zapominaj wpisać swojego pytania!");
		document.getElementById("uwagi").appendChild(komunikat);
		return false;
	}
	else
	{	
		document.getElementById("uwagi").style.padding="0";
		return true;
	}
}