function CreateAjaxPanel(title,path) {
	AllRemove();

	Ext.getCmp("content").add(
		new Ext.Panel({
			id:"AjaxPanel",
			layout:"fit",
			autoScroll:true,
			border:false
		})
	);
	Ext.getCmp("content").setTitle(title);
	Ext.getCmp("content").syncSize().doLayout();
	Ext.getCmp("AjaxPanel").load({url:path,nocache:true,scripts:true});
}