﻿/*function doPanel(container, content, title)
{
   var p = new Ext.Panel({
        title: title,
        collapsible:true,
        collapsed:true,
        renderTo: container,
        width:100,
        contentEl: content
    });   
}



Ext.onReady(function(){
    doPanel('container','content', 'My Panel');
});
*/
