Link.ContentViewer = function(config) {
	Ext.apply(config, {
		viewName	: "viewContentData",
		autoHeight	: true,
		hidePaging	: true,
		restrictToCategory	: config.category + "~" + config.subCategory
	});
	
	Link.ContentViewer.superclass.constructor.call(this, config);
};
Ext.extend(Link.ContentViewer, Longana.view.ViewPanel, {
	initComponent	: function() {
		Link.ContentViewer.superclass.initComponent.call(this);
	}
	
});
Ext.reg("link-contentviewer", Link.ContentViewer);
