function showEmbFld(link, id) 
{
	var el = $('.'+id);
	if (el.css('display') == 'none') { 								
		$(link).text('Скрыть');
		el.show();
		el.focus();
		el.select();				
	} else {
		$(link).text('Показать код для вставки');
		el.hide();
	}
	return false;
}	

hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.outlineType = 'rounded-white';
hs.fadeInOut = true;
hs.dimmingOpacity = 0.75;
hs.zIndexCounter = 2500;
hs.showCredits = false;

// define the restraining box
hs.useBox = true;
hs.width = 800;
hs.height = 600;

hs.graphicsDir = '/js/highslide/graphics/';
