var currentCommentID; function show_comment_list() { $('comment-list').show(); $('add-comment').hide(); $('show-comment-link').addClassName("active"); $('add-comment-link').removeClassName("active"); $('all-comments-link').removeClassName("active"); show_comments_in_list(currentCommentID); } function show_all_comments() { $('comment-list').show(); $('add-comment').hide(); $('show-comment-link').removeClassName("active"); $('add-comment-link').removeClassName("active"); $('all-comments-link').addClassName("active"); show_comments_in_list(); } function show_add_comment() { $('comment-list').hide(); $('add-comment').show(); $('show-comment-link').removeClassName("active"); $('add-comment-link').addClassName("active"); $('all-comments-link').removeClassName("active"); } function hide_add_comment() { $('user-comments').hide(); $('modal-background').hide(); $(content_textare_id).value = ''; $(currentCommentID).style.zIndex = 0; } function show_comments_in_list(id) { var list = $('comment-list'); var count=0; for(var i=0, k=list.childNodes.length; i < k; i++) { var node = list.childNodes[i]; if(node.nodeType == 1) //an element node { if(typeof(id) == "undefined" || node.className.indexOf(id) >= 0) { node.style.display="block" count++; } else node.style.display="none"; } } return count; } function show_comments(block) { var id = block.id currentCommentID = id; $(hidden_block_id).value = id; var commentBlock = $('user-comments'); var pos = Position.cumulativeOffset(block); var top = pos[1] + block.offsetHeight; commentBlock.style.top = top+"px"; commentBlock.style.width = (block.offsetWidth-22)+"px"; commentBlock.show(); var count = show_comments_in_list(id); $('comment-list').show(); if(count > 0) show_comment_list(); else show_add_comment(); var background = $('modal-background'); background.style.top="0px"; background.style.left="0px"; background.style.opacity="0.5"; background.style.width = document.body.offsetWidth+"px"; background.style.height = document.body.offsetHeight+"px"; background.show(); block.style.zIndex = 100; block.style.paddingRight="9px"; block.style.marginRight="-9px"; } function show_block(block) { while(block && block.className.indexOf("block-content") < 0) block = block.parentNode; if(block && block.className.indexOf("block-content") >= 0) { block.addClassName('block-hover'); var tag = $('tag-'+block.id); // if(tag.className.indexOf("tag-shown")<=0) tag.firstChild.style.visibility="visible" } } function hide_block(block) { while(block && block.className.indexOf("block-hover") < 0) block = block.parentNode; if(block && block.className.indexOf("block-hover") >= 0) { block.removeClassName('block-hover'); var tag = $('tag-'+block.id); if(tag.className.indexOf("tag-shown")<=0) tag.firstChild.style.visibility="hidden" } } function add_comment_tag(el) { var dim = Element.getDimensions(el); var comments = get_comment_count(el.id); var style = "height:"+(dim.height > 35 ? dim.height : 35)+"px;"; var cssClass = dim.height ? "block-comment-tag" : "block-comment-tag-ie"; var title = "View "+comments+" comments" var innerStyle=""; if(comments <= 0) { innerStyle = " visibility:hidden;"; comments = "add"; title = "Add new comment"; } else cssClass += " tag-shown"; var id = "tag-"+el.id; var tag = "