	//<LAYOUT DESIGN> Changing this code manually might break the Page Designer.
	this.viewTop = new PanelView(this);
	this.viewTop.align = Align.Top; 
	this.viewTop.height = '45%';
	this.viewTop.border = false;
	this.splitterTop = new Splitter(this);
	this.splitterTop.align = Align.Top; 

	this.view = new PanelView(this);
	this.view.align = Align.Client; 
	this.view.border = false;

	this.view1 = new PanelView(this.view);
	this.view1.align = Align.Left; 
	this.view1.width = '50%';
	this.view1.border = false;

	this.view1Left = new Splitter(this.view);
	this.view1Left.align = Align.Left; 

	this.recordsView = new RecordsView(this.viewTop);
	this.recordsView.align = Align.Client;
	
	this.attributesView = new AttributesView(this.view1);
	this.attributesView.align = Align.Client; 
	this.attributesView.alignment = Alignment.Left; 
	
	this.filesView = new FilesView(this.viewTop);
	this.filesView.margins.left = 3;
	this.filesView.align = Align.Right;
	this.filesView.width = '25%';
	//<LAYOUT DESIGN>