function check_data(){
	content = document.getElementsByName('content')[0].value;
	if(content.length > 5 ){
		var f = document.getElementById('form123');
		f.submit();
	}else{
		alert('Proszę uzupełnić polę treści wiadomości');
	}
	
}

