﻿// JavaScript functions for Content module user controls.

/* Blog/BlogEntryView.ascx */
function blogEntryView_addComment_onClick(prefix,replyToID)
{
	//show dialog and focus on field
	modalDialog_toggle(prefix + "_Dialog",true,prefix + "_CommentText");
	
	//set comment id being replied to
	document.getElementById(prefix + "_ReplyToCommentID").value = replyToID;
}
