function xtext_hide_insert(textarea){
	var title = $('xtext_hide_title').get('value');
	var rating = $('xtext_hide_rating').get('value');
	lsPanel.putTagAround(
		textarea
		,'hide'
		+(title === '' ? '' : ' title="'+title.h2c()+'"')
		+(rating === '' ? '' : ' rating="'+rating.h2c()+'"')
		,'hide'
	);
	xtext_close_popup('hide');
}

function xtext_hide_init(panel_rules){
	xtext_add_panel_button(
		panel_rules,
		'xtext_open_popup("hide")',
		'tag/hide/hide-panel-icon.gif',
		xtext_lang_get('xtext_hide_panel_title'),
		'hide'
	);
}
