
function showEditComment(guestbook_entry_id){
//alert(1);
   var commentRO = document.getElementById("comment_read_only_"+guestbook_entry_id);
//alert("commentRO:"+commentRO);   
//commentRO.style.cssText = "display:none;";
commentRO.style.display = "none";
   var commentEdit = document.getElementById("comment_edit_"+guestbook_entry_id);
//   commentEdit.style.cssText = "display:show;";
   commentEdit.style.display = "block";
  return false;
}
function hideEditComment(guestbook_entry_id){
   var commentRO = document.getElementById("comment_read_only_"+guestbook_entry_id);
//   commentRO.style.cssText = "display:show;";
   commentRO.style.display = "block";
//alert(3);
   var commentEdit = document.getElementById("comment_edit_"+guestbook_entry_id);
//   commentEdit.style.cssText = "display:none;";
   commentEdit.style.display = "none";
  return false;
}

// DELETE
function showDelete(guestbook_entry_id){
   //alert(guestbook_entry_id);
   var commentRO = document.getElementById("guestbook_entry_delete_"+guestbook_entry_id);
   //alert("commentRO:"+commentRO);   
  //commentRO.style.cssText = "display:show;";
  commentRO.style.display = "block";
   return false;
}

function hideDelete(guestbook_entry_id){
  //alert(guestbook_entry_id);
  var commentRO = document.getElementById("guestbook_entry_delete_"+guestbook_entry_id);
  //commentRO.style.cssText = "display:none;";
  commentRO.style.display = "none";
  return false;
}

