function displayComment() {
	var obj = document.getElementById('article_komentar_full');
	obj.style.display = "";
}

function hideComment() {
	var obj = document.getElementById('article_komentar_full');
	obj.style.display = "none";
}