function checkNewTopicForm(form) {
	var text = "";
	var emptyData = false;

	if (form.topic.value==""){
		text += " Temat nowego wątku,";
		emptyData = true;
	} else {
		if (!emptyData) {
			emptyData = false;
		}
	}

	if (!emptyData) {
		return true;
	} else {
		document.getElementById('info-forum').innerHTML = "Prosze wprowadzic poprawnie pozycje: <br />" + text.substr(0,text.length - 1);
		return false;
	}
}
