function AddComment() 
{
  document.getElementById('commentbox').style.display = 'block';
  document.getElementById('commentquestion').style.display = 'none';
}
function BlogRemove(bid, uid) 
{
 question = confirm("Are you sure you want to remove this blog entry?")
 if (question != "0") 
 {
  top.location = "blogremove.asp?id=" + uid + "&bid=" + bid
 }
}
function CommentRemove(bid, cid, uid) 
{
 question = confirm("Are you sure you want to remove this comment?")
 if (question != "0") 
 {
  top.location = "commentremove.asp?id=" + uid + "&bid=" + bid + "&bcid=" + cid
 }
}