	
function hide_other_comments(id) 	{
	document.getElementById(id).style.display = "none";
	}
	
function show_other_comments(id) 	{
	document.getElementById(id).style.display = "block";
	}	
	
function hide_form_comments(id) 	{
	document.getElementById(id).style.display = "none";
	}

function show_form_comments(id) 	{
	document.getElementById(id).style.display = "block";
	}

function comments_header_select(id) 	{
	document.getElementById(id).className = "comments_header_content_title comments_header_content_selected_title comments_header_content_triangle";
	}	

function comments_header_unselect(id) 	{
	document.getElementById(id).className = "comments_header_content_title";
	}	
	
function hide_commnets_form(id) 	{
	document.getElementById(id).className = "none";
	}
		
