/* shows/hides the comments for a post */
function zShowComments(cellid) { 
 var commentCell = document.getElementById("zComments" + cellid);
 if (commentCell.style.display == 'none') {
  commentCell.style.display = '';
 } else {
  commentCell.style.display = 'none';
 }
}