
var tb = new Ext.Toolbar({
    height: 26,
    items: [
        {
            // xtype: 'button', // default for Toolbars, same as 'tbbutton'
			id: 'panelTitle'
            //text: '<b>Java Server Pages</b>'
        },
        // begin using the right-justified button container
        '->', // same as {xtype: 'tbfill'}, // Ext.Toolbar.Fill
        {
            // xtype: 'button', // default for Toolbars, same as 'tbbutton'
            text: 'View in New Window',
			iconCls: 'new_window'
        },
        {
            // xtype: 'button', // default for Toolbars, same as 'tbbutton'
            text: 'Print',
			iconCls: 'printer'
        }
    ]
});

var techPanel = new Ext.Panel({
	
	layout:'border',
	defaults: {
		collapsible: false,
		split: true
	},
	items: [{
		region:'west',
		width: 220,
		minSize: 100,
		maxSize: 250,
		layout: 'fit',
		items: techTree
	},{
		id: 'entry',
		tbar: tb,
		layout: 'fit',
		collapsible: false,
		region:'center',
		items: techContentPanel
		//layout: 'form',
		//autoLoad: 'tech/techsplash.php'
		//autoLoad: 'tech/techContent.php',
		//loadScripts: true
	}]
	
});
