function enableComment (src) {
	$('submitComment').disabled = (src.value.length == 0) ? true : false;
}

function deleteComment (id) {
	if (window.confirm('Are you sure you want to delete this comment?')) {
		location.href = '/community/blogs/deletecomment/?id=' + id;
	}
}