<!--
	function viewFullComment(id, link) {
		var comment = document.getElementById('comment'+id);

		if (comment.style.display == 'none') {
			comment.style.display = 'block';
		} else {
			comment.style.display = 'none';
		}
	}
//-->