function showComments()
{
	if($("their_comments").style.display!="none")
	{
		$("your_comments").style.display="block";
		$("comment_text").innerHTML = "Read Comments";
		$("their_comments").style.display="none";
	}
	else
	{
		$("your_comments").style.display="none";
		$("comment_text").innerHTML = "Add a Comment";
		$("their_comments").style.display="block";
	}
}