/**
 * Панель управления для редактирования html-элементов.
 */
var cHydraWysiwygToolbar = function()
{
	this.iframe_id = 'hydra_editor_iframe';
	this.src_elem_id = false;
}

cHydraWysiwygToolbar.prototype.create = function(container_id)
{
    
    var toolbar_elem = document.getElementById(container_id);
	return this.add_toolbar_item(toolbar_elem, '../_components/wysiwyg_toolbar/i/bold.gif', 'Bold', null);
}

/**
 * Создает кнопку на панели управления
 */
cHydraWysiwygToolbar.prototype.add_toolbar_item = function(toolbar_elem, icon, command, value)
{
	var img_elem = document.createElement('img');
	img_elem.setAttribute('src', icon);
	img_elem.setAttribute('onclick', 'document.exec_command("' + command  + '");'); //+ '",' + value
	toolbar_elem.appendChild(img_elem);
}

wysiwyg_toolbar = new cHydraWysiwygToolbar();