function SprawdzPost(typ) {
	var wynik = 0;
	var str = '';
	
	if (typ == 'watek' && document.getElementById('tresc_posta').value == '' ) {
		document.getElementById('tytul').style.backgroundColor = 'Red';
		str += "Podaj tytuł nowego wątku\r\n";
		wynik = wynik+1;
	}
	if( document.getElementById('tresc_posta').value == '') {
		document.getElementById('tresc_posta').style.backgroundColor = 'Red';
		str += "Podaj treść wpisu\r\n";
		wynik = wynik+1;
	} else {
  		document.getElementById('tresc_posta').style.backgroundColor = 'White';
	}
 	
 	if (wynik == 0) {
		xajax_SprawdzKod( xajax.getFormValues("dodaj_post") );
 	} else {
 		alert(str);
 	}
}

function SprawdzKomentarz(id) {
	var wynik = 0;
	var str = '';

	if( document.getElementById('dopisujacy_'+id).value == '') {
		document.getElementById('dopisujacy_'+id).style.backgroundColor = 'Red';
		str += "Podaj swój nick\r\n";
		wynik = wynik+1;
	} else {
  		document.getElementById('dopisujacy_'+id).style.backgroundColor = 'White';
	}	
	if( document.getElementById('tresc_'+id).value == '') {
		document.getElementById('tresc_'+id).style.backgroundColor = 'Red';
		str += "Podaj treść wpisu\r\n";
		wynik = wynik+1;
	} else {
  		document.getElementById('tresc_'+id).style.backgroundColor = 'White';
	}
	if (wynik == 0) {
		xajax_SprawdzKod( xajax.getFormValues("skomentuj_"+id),id );
 	} else {
 		alert(str);
 	}
}