

function showCommentForm(title)
{
$("#commentForm").dialog({modal:true,title:title,width:450,height:500});
$("#commentForm").dialog('open');
	}
function closeCommentForm()
{
	$("#commentForm").dialog('close');
	}
