function show_comment_form(id)
{
	form = document.getElementById("add_comment_form_"+id);
	button = document.getElementById("show_form_"+id);
	form.style.display="block";
	button.style.display="none";
}
