 
   function onpage_delete_comment_tyn(comment_id, video_id, selector) {

	var confirm_msg = "You are about to delete this comment. Click 'Cancel' to stop, 'OK' to delete";
	var response = false;
	
	if (confirm(confirm_msg)) 
	{
		if (selector.length > 0) 
		{
			ajax_request("comments", "do=onpage_delete_comment_tyn&cid=" + comment_id + "&vid=" + video_id, "", "", false);
			$(selector).fadeOut('normal');
		}
	}
}
 