var tools = "Cut,Copy,Paste,Pastetext,|,Blocktag,Fontface,FontSize,Bold,Italic,Underline,Strikethrough,FontColor,BackColor,SelectAll,Removeformat,|,Align,List,Outdent,Indent,|,Link,Unlink,Flash,Media,Emot,Table,xhistore,|,Source,Fullscreen";
var allPlugin = {
	xhistore : {
		c : 'xhistore',
		t : '添加图片',
		e : function() {
			var _this = this;
			_this
					.showIframeModal(
							'添加图片',
							SITE_URL.passport+"/index.php?c=xhistore&upload=1&network=1&album=1&batch=1",
							function(v) {
								_this.loadBookmark();
								var vo = v.split("|");
								var htm = "";
								if (vo[0] == 'img') {
									htm = '<img src="' + vo[1] + '" />';
									_this.pasteHTML(htm);
								} else if (vo[0] == 'imgs') {
									for (var i = 1; i <= vo.length - 1; i ++) {
										if (!vo[i]) continue;
										htm += '<img src="' + vo[i] + '" /><br />';
									}
									_this.pasteHTML(htm);
								}
							}, 600, 400);
		}
	}
};


