Ext.ns('Application');
Application.ShowHelp = function (title, html, obj){
	var helpWindow = new Ext.Window({
		title: 'Помощь',
		stateful: false,
		width: 600,
		height: 500,
		autoScroll: true,
		bodyStyle: "padding: 8px",
		closeAction: 'hide',
		cls: 'helpWindow content',
		iconCls: 'wnd-info-icon'
	});	
	helpWindow.show(obj);			
	helpWindow.setTitle(title);
	var mgr = helpWindow.getUpdater();
	mgr.update({
		url: html,
		text: 'Загрузка...'
	});
};	
