
function onLoadPage() {

}

function onUnLoadPage() {

}

function test_form_kontaktowy() {
	var pola = new Array ('tytul','wiadomosc','email','podpis')
	for (x=0;x<pola.length;x++) {
		if (document.form.elements[pola[x]].value=='') {
			alert('Proszę wypełnić wszystkie pola formularza');
			return false;
		}
	}
	/*
	if (document.form.email.value.search(/\w+@\w+\.\w+/) == -1) {
		alert('Ten adres e-mail jest nieprawidłowy');
		return false;
	}*/
	return true;
}

function test_form_poczta() {
	var pola = new Array ('_user','_pass')
	for (x=0;x<pola.length;x++) {
		if (document.form_poczta.elements[pola[x]].value=='') {
			alert('Proszę wypełnić wszystkie pola formularza');
			return false;
		}
	}
	if (document.form_poczta._user.value.search(/\w+@\w+\.\w+/) == -1) {
		alert('Ten adres e-mail jest nieprawidłowy');
		return false;
	}
	return true;
}

