
function forum_new_topic() {
	document.getElementById('forum_new_topic_span').style.display = '';
}

function forum_topic_cancel() {
	document.getElementById('new_topic_name').value='';
	document.getElementById('forum_new_topic_span').style.display = 'none';
}

function forum_topic_send() {
	var catid = document.getElementById('catid').value;
	var ntopic = document.getElementById('new_topic_name').value;
	$.post("index.php", { ajax: "forum", new_topic_name: ntopic, catid: catid }, function(){
		javaScriptMethodName('forum&category='+catid);
	});

}

function forum_new_comment() {
	document.getElementById('forum_new_comment_span').style.display = '';
}

function forum_comment_cancel() {
	document.getElementById('new_comment_name').value='';
	document.getElementById('forum_new_comment_span').style.display = 'none';
}

function forum_comment_send() {
	var topicid = document.getElementById('topicid').value;
	var ncomment = document.getElementById('new_comment_name').value;
	$.post("index.php", { ajax: "forum", new_comment_name: ncomment, topicid: topicid }, function(){
		javaScriptMethodName('forum&topic='+topicid);
	});

}