if ( typeof(RadEditorCommandList) == "undefined" ) RadEditorCommandList= [];
/* Implementation of the Custom command, declared in the editor's Tools.xml file! */
RadEditorCommandList["BlockQuote"] = function(commandName, editor, oTool)
{
	var currentSelectedHtml = editor.GetSelectionHtml();
    editor.PasteHtml("<blockquote><p>" + currentSelectedHtml + "</p></blockquote>");
};