var editor;

function test(ed) {
	editor = ed;
	$('objectUploaderModalPanel').show();
}

function test2() {
	editor.execCommand('mceInsertContent',false,'sdfsfasfsf dddddd');
}

function insertMediaPhoto(id, text, name) {
	if(!text) {
		text = name;
	}
	editor.execCommand('mceInsertContent', false, '<img src="#{request.contextPath}/action/ImageViewer?type=media_photo&amp;id=' + id + '" alt="' + text + '" title="' + text + '"/>');
	$('objectUploaderModalPanel').hide();
}
		
