function slyEntityManager(entity, title, pageForFiles) {
	this.entity = entity;
	this.pageForFiles = pageForFiles;
	this.title = title;
	this.base = slyDialog;
	this.base({title:this.title});
}
slyEntityManager.prototype = new slyDialog();

slyEntityManager.prototype.setDialogContent = function(parentNode) {
	new slyTable(parentNode, {entity:this.entity, pageForFiles:this.pageForFiles});
};
