function sprawdz(AForm)
{
	if (!AForm.user.value) {
	alert("Podaj swoje imie");
	return false;
	} 

	if (AForm.email.value == 'twój@adres.pl') {
	alert("Podaj swojego emaila");
	return false;
	}
	
	if ((!AForm.wiadomosc.value) || (AForm.wiadomosc.value.length < 1)) {
	alert("Podaj treść wiadomości");
	return false;
	} 
	return true;
}

function czysc(AInput)
{
	if (AInput.value == 'twój@adres.pl') {
	AInput.value = '';
	}
	return true;
}

function wypelnij(AInput)
{
	if (AInput.value == '') {
	AInput.value = 'twój@adres.pl';
	}
	return true;
}

function form(AForm)
{
	if ((!AForm.user.value) || (AForm.user.value.length < 4)) {
	alert("Podaj nazwe użytkownika, conajmniej 4 znaki");
	return false;
	}
	
	if (!AForm.haslo.value) {
	alert("Podaj hasło");
	return false;
	}

	if (!AForm.email.value) {
	alert("Podaj swój adres email");
	return false;
	}
	
	if (AForm.email.value != AForm.femail.value) {
	alert("Adresy email rożnią się");
	return false;
	}

	if (document.getElementById('regulamin').checked == false) {
	alert("Musisz zakceptowac regulamin");
	return false;
	}
	return true;

}

function male(pole)
{
	pole.value = pole.value.toLowerCase()
}
